> + }
> +
> + @Test
> + public void testReservePublicIpBlock() {
> + newIpBlock = api.ipBlockApi().reservePublicIpBlock("2",
> Location.US_LAS.value());
> +
> + assertNotNull(newIpBlock);
> + assertNotNull(newIpBlock.ips());
> + assertFalse(newIpBlock.ips().isEmpty());
> + }
> +
> + @Test
> + public void testGetAllIpBlocks() {
> + List<IpBlock> ipBlocks = api.ipBlockApi().getAllIpBlock();
> +
> + assertNotNull(ipBlocks);
The jclouds fallback always returns a list (or an empty one). Should we better
add some assertion to verify that the list has the expected elements?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/141/files#r25603854