> +   @Test
> +   public void testCreateContainerInLocation() {
> +      assertThat(blobStore.createContainerInLocation(null, 
> CONTAINER_NAME)).isTrue();
> +      assertThat(blobStore.containerExists(CONTAINER_NAME)).isTrue();
> +   }
> +
> +   @Test
> +   public void testDeleteContainer() {
> +      assertThat(blobStore.createContainerInLocation(null, 
> CONTAINER_NAME)).isTrue();
> +      assertThat(blobStore.containerExists(CONTAINER_NAME)).isTrue();
> +      blobStore.deleteContainer(CONTAINER_NAME);
> +      assertThat(blobStore.containerExists(CONTAINER_NAME)).isFalse();
> +   }
> +
> +   @Test
> +   public void testPutBlob() {

Yes, there are many putBlob/getBlob tests in the BaseJdbcStorageStrategyTest 
and BaseJdbcBlobStoreTest classes.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/176/files#r31865926

Reply via email to