{
  "mockBidRequest": {
    "id": "test-request-id",
    "app": {
      "bundle": "com.prebid"
    },
    "device": {
      "ip":"238.89.104.156"
    },
    "imp": [
      {
        "id": "test-imp-id",
        "banner": {
          "format": [
            {
              "w": 300,
              "h": 50
            }
          ]
        }
      }
    ]
  },

  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "https://an.epom.com/ortb",
        "headers": {
          "Accept": [
            "application/json"
          ],
          "Content-Type": [
            "application/json;charset=utf-8"
          ]
        },
        "body": {
          "id": "test-request-id",
          "app": {
            "bundle": "com.prebid"
          },
          "device": {
            "ip":"238.89.104.156"
          },
          "imp": [
            {
              "id": "test-imp-id",
              "banner": {
                "format": [
                  {
                    "w": 300,
                    "h": 50
                  }
                ]
              }
            }
          ]
        },
        "impIDs":["test-imp-id"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "test-request-id",
          "seatbid": [
            {
              "seat": "epom",
              "bid": [
                {
                  "id": "1",
                  "impid": "test-imp-id",
                  "price": 0.500000,
                  "adm": "test-adm",
                  "crid": "test-crid",
                  "h": 50,
                  "w": 300
                }
              ]
            }
          ],
          "cur": "USD"
        }
      }
    }
  ],

  "expectedBidResponses": [
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "id": "1",
            "impid": "test-imp-id",
            "price": 0.5,
            "adm": "test-adm",
            "crid": "test-crid",
            "w": 300,
            "h": 50
          },
          "type": "banner"
        }
      ]
    }
  ]
}
