TestCase represents a single test scenario
| 4 | |
| 5 | // TestCase represents a single test scenario |
| 6 | type TestCase struct { |
| 7 | Name string `json:"name"` |
| 8 | Prompt string `json:"prompt"` |
| 9 | InitialCartState *InitialCartState `json:"initial_cart_state,omitempty"` |
| 10 | ExpectedToolVariants []ExpectedToolPath `json:"expected_tools_variants"` // Multi-path format |
| 11 | } |
| 12 | |
| 13 | // InitialCartState represents the initial state of the cart for a test |
| 14 | type InitialCartState struct { |
nothing calls this directly
no outgoing calls
no test coverage detected