HttpResponse listResponse = HttpResponse.builder().statusCode(OK.getStatusCode())
.payload(payloadFromResourceWithContentType("/list_geo_services.json", APPLICATION_JSON)).build();
public void testListWhenResponseIs2xx() {
DynTrafficApi success = requestsSendResponses(createSession, createSessionResponse, list, listResponse);
assertEquals(success.getGeoServiceApi().list().toString(), new ListGeoServicesResponseTest().expected()
.toString());
}