InitialCartState represents the initial state of the cart for a test
| 12 | |
| 13 | // InitialCartState represents the initial state of the cart for a test |
| 14 | type InitialCartState struct { |
| 15 | Items []InitialCartItem `json:"items"` |
| 16 | } |
| 17 | |
| 18 | // InitialCartItem represents an item in the initial cart state |
| 19 | type InitialCartItem struct { |
nothing calls this directly
no outgoing calls
no test coverage detected