(t *testing.T)
| 10 | ) |
| 11 | |
| 12 | func TestFindModelPricing(t *testing.T) { |
| 13 | pricing, ok := findModelPricing("anthropic", "claude-sonnet-4.6") |
| 14 | require.True(t, ok) |
| 15 | assert.InDelta(t, 0.000003, pricing["input"], 1e-12) |
| 16 | } |
| 17 | |
| 18 | func TestComputeModelInferenceAIC(t *testing.T) { |
| 19 | aic := computeModelInferenceAIC("anthropic", "claude-sonnet-4.6", 1000, 200, 400, 50, 25) |
nothing calls this directly
no test coverage detected