(t *testing.T)
| 98 | } |
| 99 | |
| 100 | func TestCreatedStateTransition(t *testing.T) { |
| 101 | testTransitions( |
| 102 | t, |
| 103 | &createdState{c: &Container{}}, |
| 104 | []containerState{ |
| 105 | &stoppedState{}, |
| 106 | &pausedState{}, |
| 107 | &runningState{}, |
| 108 | &createdState{}, |
| 109 | }, |
| 110 | ) |
| 111 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…