> @@ -101,6 +101,24 @@ public void deleteContainerWithContents() throws
> InterruptedException {
>
> @Override
> @Test(dataProvider = "ignoreOnWindows")
> + public void deleteContainerWithoutContents() throws InterruptedException {
> + super.deleteContainerWithoutContents();
> + }
> +
> + @Override
> + @Test(dataProvider = "ignoreOnWindows")
> + public void deleteContainerIfEmptyWithContents() throws
> InterruptedException {
> + super.deleteContainerIfEmptyWithContents();
> + }
> +
> + @Override
> + @Test(dataProvider = "ignoreOnWindows")
> + public void deleteContainerIfEmptyWithoutContents() throws
> InterruptedException {
> + super.deleteContainerIfEmptyWithoutContents();
> + }
I don't know if my comment got lost, but
`deleteContainerIfEmptyWithoutContents` exercises this via:
```
assertTrue(view.getBlobStore().deleteContainerIfEmpty(containerName));
assertNotExists(containerName);
assertTrue(view.getBlobStore().deleteContainerIfEmpty(containerName));
```
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/451/files#r15379778