@Test(
     timeOut = 5 * 60 * 1000,
     dependsOnMethods = {"testListOwnedContainers", "testObjectOperations"})
 public void testDeleteContainer() throws Exception {
   client.deleteContainer(privateContainer);
   client.deleteContainer(publicContainer);
   // TODO loop for up to 30 seconds checking if they are really gone
 }
 @Test
 public void testDeleteOneContainer() throws Exception {
   client.deleteContainer("does-not-exist");
 }