(t *testing.T)
| 51 | } |
| 52 | |
| 53 | func TestStoppedStateTransition(t *testing.T) { |
| 54 | testTransitions( |
| 55 | t, |
| 56 | &stoppedState{c: &Container{}}, |
| 57 | []containerState{ |
| 58 | &stoppedState{}, |
| 59 | &runningState{}, |
| 60 | &restoredState{}, |
| 61 | }, |
| 62 | ) |
| 63 | } |
| 64 | |
| 65 | func TestPausedStateTransition(t *testing.T) { |
| 66 | testTransitions( |
nothing calls this directly
no test coverage detected
searching dependent graphs…