(t *testing.T)
| 354 | } |
| 355 | |
| 356 | func TestMatchAgentProfile_Unknown(t *testing.T) { |
| 357 | p := MatchAgentProfile("some-random-agent/1.0") |
| 358 | if p.Name != "default" { |
| 359 | t.Errorf("expected default, got %s", p.Name) |
| 360 | } |
| 361 | if p.ChunkSizeBytes != 7000 { |
| 362 | t.Errorf("expected default chunk 7000, got %d", p.ChunkSizeBytes) |
| 363 | } |
| 364 | } |
| 365 | |
| 366 | // =================================================================== |
| 367 | // C. Tool Selection Tests (per agent) |
nothing calls this directly
no test coverage detected