(t *testing.T)
| 214 | } |
| 215 | |
| 216 | func TestManagerStartNonExistent(t *testing.T) { |
| 217 | m := NewManager(10, testProvider) |
| 218 | |
| 219 | err := m.Start("non-existent") |
| 220 | if err == nil { |
| 221 | t.Error("expected error when starting non-existent PRD") |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | func TestManagerStartRequiresProvider(t *testing.T) { |
| 226 | tmpDir := t.TempDir() |
nothing calls this directly
no test coverage detected