> +   private HttpHealthCheckApi api() {
> +      return api.getHttpHealthCheckApiForProject(userProject.get());
> +   }
> +
> +   @Test(groups = "live")
> +   public void testInsertHttpHealthCheck() {
> +      
> assertGlobalOperationDoneSucessfully(api().create(HTTP_HEALTH_CHECK_NAME), 
> TIME_WAIT);
> +   }
> +
> +   @Test(groups = "live", dependsOnMethods = "testInsertHttpHealthCheck")
> +   public void testGetHttpHealthCheck() {
> +      HttpHealthCheck httpHealthCheck = api().get(HTTP_HEALTH_CHECK_NAME);
> +      assertNotNull(httpHealthCheck);
> +      assertEquals(httpHealthCheck.getName(), HTTP_HEALTH_CHECK_NAME);
> +   }
> +

Does this actually depend on `get` or on `insert`? Could `testGet` and 
`testList` be run in parallel?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-google/pull/22/files#r18015780

Reply via email to