(t *testing.T)
| 159 | } |
| 160 | |
| 161 | func TestManagerGetRunningPRDs(t *testing.T) { |
| 162 | m := NewManager(10, testProvider) |
| 163 | |
| 164 | // Initially no running PRDs |
| 165 | running := m.GetRunningPRDs() |
| 166 | if len(running) != 0 { |
| 167 | t.Errorf("expected 0 running PRDs, got %d", len(running)) |
| 168 | } |
| 169 | } |
| 170 | |
| 171 | func TestManagerGetRunningCount(t *testing.T) { |
| 172 | m := NewManager(10, testProvider) |
nothing calls this directly
no test coverage detected