(t *testing.T)
| 16 | } |
| 17 | |
| 18 | func TestComputeModelInferenceAIC(t *testing.T) { |
| 19 | aic := computeModelInferenceAIC("anthropic", "claude-sonnet-4.6", 1000, 200, 400, 50, 25) |
| 20 | assert.InDelta(t, 0.54825, aic, 1e-9) |
| 21 | } |
| 22 | |
| 23 | func TestNormalizeCatalogProvider(t *testing.T) { |
| 24 | tests := []struct { |
nothing calls this directly
no test coverage detected