{
  "testProducts": [
    {
      "id": "test-product-1",
      "name": "Test Product 1",
      "expectedPrice": 100.00,
      "expectedVAT": 15.00,
      "expectedPriceIncl": 115.00
    },
    {
      "id": "test-product-2",
      "name": "Test Product 2",
      "expectedPrice": 250.00,
      "expectedVAT": 37.50,
      "expectedPriceIncl": 287.50
    }
  ],
  "cartScenarios": [
    {
      "name": "single_item",
      "description": "Add single item to cart",
      "items": [
        {
          "id": "test-product-1",
          "quantity": 1
        }
      ]
    },
    {
      "name": "multiple_items",
      "description": "Add multiple items to cart",
      "items": [
        {
          "id": "test-product-1",
          "quantity": 2
        },
        {
          "id": "test-product-2",
          "quantity": 1
        }
      ]
    },
    {
      "name": "duplicate_item",
      "description": "Add same item twice",
      "items": [
        {
          "id": "test-product-1",
          "quantity": 1
        },
        {
          "id": "test-product-1",
          "quantity": 1
        }
      ]
    }
  ],
  "searchTerms": {
    "valid": ["wine", "red", "white"],
    "invalid": ["xyzabc123", "test"],
    "special": ["<script>", "' OR '1'='1"]
  }
}

