(t *testing.T)
| 7 | ) |
| 8 | |
| 9 | func TestNewMultiProviderFactory(t *testing.T) { |
| 10 | factory := NewMultiProviderFactory() |
| 11 | if factory == nil { |
| 12 | t.Fatal("expected MultiProviderFactory, got nil") |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | func TestMultiProviderFactory_Create_Anthropic(t *testing.T) { |
| 17 | factory := NewMultiProviderFactory() |
nothing calls this directly
no test coverage detected