()
| 15 | ) |
| 16 | |
| 17 | func getCounter() (func(), func() int) { |
| 18 | counter := 0 |
| 19 | return func() { counter++ }, func() int { return counter } |
| 20 | } |
| 21 | |
| 22 | func TestNewCmdTaskInstantStop(t *testing.T) { |
| 23 | writer := bytes.NewBuffer(nil) |
no outgoing calls
no test coverage detected