> +   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);
> +   }
> +

nice catch, updating

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

Reply via email to