> + public void testList() {
> + privateNetworks = privateNetworkApi().list();
> +
> + Assert.assertTrue(privateNetworks.size() > 0);
> + }
> +
> + @Test(dependsOnMethods = "testList")
> + public void testListWithOption() {
> + GenericQueryOptions options = new GenericQueryOptions();
> + options.options(0, 0, null, "jclouds", null);
> + List<PrivateNetwork> resultWithQuery =
> privateNetworkApi().list(options);
> +
> + Assert.assertTrue(resultWithQuery.size() > 0);
> + }
> +
> + @Test(dependsOnMethods = "testListWithOption")
No need for the dependency.
--
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/315/files/aec0775e803138e2a965a03a6035af54ad5e098f#r77631265