> +   @Test(dependsOnMethods = "testAssignServerIp")
> +   public void testServerIpGet() {
> +      LoadBalancer.ServerIp result = 
> loadBalancerApi().getServerIp(currentLoadBalancer.id(), 
> currentServer.ips().get(0).id());
> +
> +      assertNotNull(result);
> +   }
> +
> +   @Test(dependsOnMethods = "testServerIpGet")
> +   public void testUnassignServer() {
> +      LoadBalancer result = 
> loadBalancerApi().unassignServerIp(currentLoadBalancer.id(), 
> currentServer.ips().get(0).id());
> +
> +      assertNotNull(result);
> +      assertEquals(result.serverIps().size(), 0);
> +   }
> +
> +   @Test(dependsOnMethods = "testUnassignServer")

Could it just depend on the "testGet" test too, to maximize the chances it gets 
executed if other tests fail?
 Add a line note


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/307/files/915aa395f4fe7805f8c6fe7f0e333184935eb43c#r74426202

Reply via email to