{
  "mockBidRequest": {
    "id": "testid",
    "site": {
      "id": "test"
    },
    "imp": [
      {
        "id": "testimpid",
        "banner": {
          "format": [
            {
              "w": 300,
              "h": 250
            },
            {
              "w": 320,
              "h": 50
            }
          ]
        },
        "ext": {
          "bidder": {
            "tid": "testtid"
          }
        }
      }
    ]
  },
  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "https://localhost/adrequest/prebidserver",
        "body": {
          "id": "testid",
          "imp": [
            {
              "banner": {
                "format": [
                  {
                    "w": 300,
                    "h": 250
                  },
                  {
                    "w": 320,
                    "h": 50
                  }
                ]
              },
              "id": "testimpid",
              "tagid": "testtid"
            }
          ],
          "site": {
            "id": "test"
          }
        },
        "impIDs":["testimpid"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "seatbid": [
            {
              "bid": [
                {
                  "crid": "123",
                  "adid": "456",
                  "price": 0.12,
                  "id": "testid",
                  "impid": "testimpid",
                  "cid": "789"
                }
              ]
            }
          ]
        }
      }
    }
  ],
  "expectedBidResponses": [
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "crid": "123",
            "adid": "456",
            "price": 0.12,
            "id": "testid",
            "impid": "testimpid",
            "cid": "789"
          },
          "type": "banner"
        }
      ]
    }
  ]
}