> +@Test(groups = "live", testName = "StorageAccountApiLiveTest") > +public class StorageAccountApiLiveTest extends BaseAzureComputeApiLiveTest { > + > + private static final String NAME = String.format("%3.24s", > + RAND + > StorageAccountApiLiveTest.class.getSimpleName().toLowerCase()); > + > + private void check(final StorageService storage) { > + assertNotNull(storage.id()); > + assertNotNull(storage.name()); > + assertNotNull(storage.storageServiceProperties()); > + assertNotNull(storage.storageServiceProperties().accountType()); > + > assertFalse(storage.storageServiceProperties().primaryEndpoints().isEmpty()); > + assertNotNull(storage.storageServiceProperties().creationTime()); > + } > + > + @Test()
Should this better depend on the create test, to make sure there is content? --- 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/259/files/545a9a572a375fa04f8b638e5693bb5bf29471f3#r59684889