> + */
> +@Test(groups = "live", testName = "SizeApiLiveTest")
> +public class SizeApiLiveTest extends BaseDigitalOceanLiveTest {
> +
> + private SizesApi sizesApi;
> +
> + @Override
> + protected void initialize() {
> + super.initialize();
> + sizesApi = api.getSizesApi();
> + }
> +
> + public void testListSizes() {
> + List<Size> sizes = sizesApi.list();
> +
> + assertTrue(sizes.size() > 0, "Size list should not be empty");
`!sizes.isEmpty()`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/49/files#r9166731