> + this.provider = "glacier";
> + }
> +
> + private static final String VAULT_NAME1 = "testV1";
> + private static final String VAULT_NAME2 = "testV2";
> + private static final String VAULT_NAME3 = "testV3";
> +
> + @Test(groups = { "integration", "live" })
> + public void testDeleteVaultIfEmptyOrNotFound() throws Exception {
> + assertTrue(api.deleteVaultIfEmpty(UUID.randomUUID().toString()));
> + }
> +
> + @Test(groups = { "integration", "live" })
> + public void testDescribeNonExistentVault() throws Exception {
> + VaultMetadata vault = api.describeVault(UUID.randomUUID().toString());
> + assertEquals(vault, null);
`assertNull(vault)`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/4/files#r13034827