(t *testing.T)
| 178 | } |
| 179 | |
| 180 | func TestManagerIsAnyRunning(t *testing.T) { |
| 181 | m := NewManager(10, testProvider) |
| 182 | |
| 183 | if m.IsAnyRunning() { |
| 184 | t.Error("expected no running loops") |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | func TestManagerPauseNonRunning(t *testing.T) { |
| 189 | tmpDir := t.TempDir() |
nothing calls this directly
no test coverage detected