InitialCartItem represents an item in the initial cart state
| 17 | |
| 18 | // InitialCartItem represents an item in the initial cart state |
| 19 | type InitialCartItem struct { |
| 20 | ProductName string `json:"product_name"` |
| 21 | Quantity int `json:"quantity"` |
| 22 | } |
| 23 | |
| 24 | // ExpectedToolPath represents one valid execution path |
| 25 | type ExpectedToolPath struct { |
nothing calls this directly
no outgoing calls
no test coverage detected