> + assertFalse(images.isEmpty());
> + Assert.assertTrue(images.size() > 0);
> + }
> +
> + @Test(dependsOnMethods = "testList")
> + public void testListWithOption() {
> + GenericQueryOptions options = new GenericQueryOptions();
> + options.options(0, 0, null, "jcloudsimage", null);
> + List<Image> imageWithQuery = imageApi().list(options);
> +
> + assertNotNull(imageWithQuery);
> + assertFalse(imageWithQuery.isEmpty());
> + Assert.assertTrue(imageWithQuery.size() > 0);
> + }
> +
> + @Test(dependsOnMethods = "testListWithOption")
Same here. There is no need for the dependency between tests. Apply the same
criteria to the rest of the tests.
---
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/299/files/16efc99645240d8683449a3f2f77254ad0e91a1b#r70531728