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