> + assertNull(api.delete("jclouds-test")); > + } > + > + public void testListBackendServiceResponseIs2xx() { > + HttpRequest request = getBasicRequest().method("GET") > + .endpoint(ENDPOINT_BASE) > + .build(); > + HttpResponse response = createResponse("/backend_service_list.json"); > + > + BackendServiceApi api = > requestsSendResponses(requestForScopes(COMPUTE_READONLY_SCOPE), > + TOKEN_RESPONSE, request, response).backendServices(); > + > + assertEquals(api.list().next(), new > ParseBackendServiceListTest().expected()); > + } > + > + @Test(expectedExceptions = ResourceNotFoundException.class)
Done. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/97/files#r20609161