(t *testing.T)
| 169 | } |
| 170 | |
| 171 | func TestManagerGetRunningCount(t *testing.T) { |
| 172 | m := NewManager(10, testProvider) |
| 173 | |
| 174 | count := m.GetRunningCount() |
| 175 | if count != 0 { |
| 176 | t.Errorf("expected 0, got %d", count) |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | func TestManagerIsAnyRunning(t *testing.T) { |
| 181 | m := NewManager(10, testProvider) |
nothing calls this directly
no test coverage detected