> +
> + @Test(dependsOnMethods = "testSnapshotDroplet")
> + public void testResizeDroplet() {
> + // Resize requires the droplet to be powered off
> + int powerOffEvent = api.getDropletApi().powerOff(droplet.getId());
> + assertTrue(powerOffEvent > 0, "The event id should not be null");
> + waitForEvent(powerOffEvent);
> +
> + Size newSize = sizes.get(1);
> + int resizeEvent = api.getDropletApi().resize(droplet.getId(),
> newSize.getId());
> + assertTrue(resizeEvent > 0, "The event id should not be null");
> + waitForEvent(resizeEvent);
> + }
> +
> + @Test(dependsOnMethods = "testResizeDroplet")
> + public void testShutdowntDroplet() {
`testShutdownDroplet`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/49/files#r9166509