> @@ -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();
> + }
> but deleteContainerIfEmptyWithoutContents exercises this via:
Ah, doh, yes...sorry. Perhaps add a `// verify that false is returned even if
the container does not exist` before the last assert or as a comment above the
test?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/451/files#r15381332