> +
> + assertNotNull(vn.name());
> + assertNotNull(vn.location());
> + assertNotNull(vn.properties().addressSpace().addressPrefixes());
> + }
> +
> + @Test(groups = "live", dependsOnMethods = "getVirtualNetwork")
> + public void listVirtualNetworks() {
> +
> + final VirtualNetworkApi vnApi =
> api.getVirtualNetworkApi(resourcegroup);
> + List<VirtualNetwork> vnList = vnApi.listVirtualNetworks();
> +
> + assertTrue(vnList.size() > 0);
> + }
> +
> + @Test(groups = "live", dependsOnMethods = "listVirtualNetworks",
> alwaysRun = true)
Depend on list and get when the comment above is addressed.
---
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/262/files/1801c68f227e1f245a30c6fa6ff044e7e2634460#r60748514