> +   public void testServerGet() {
> +      SharedStorage.Server result = 
> sharedStorageApi().getServer(currentSharedStorage.id(), currentServer.id());
> +
> +      assertNotNull(result);
> +      assertEquals(result.id(), currentServer.id());
> +   }
> +
> +   @Test(dependsOnMethods = "testServerGet")
> +   public void testDetachServer() {
> +      SharedStorage result = 
> sharedStorageApi().detachServer(currentSharedStorage.id(), 
> currentServer.id());
> +
> +      assertNotNull(result);
> +      assertEquals(result.id(), currentSharedStorage.id());
> +   }
> +
> +   @Test(dependsOnMethods = "testDetachServer")

Is this dependency really needed?

---
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/304/files/b4ecd2bdfe26ff68d6dd6c9e03a4de2e3eba3fe2#r72953691

Reply via email to