JCLOUDS-538: Avoiding a VM crash trying to run live tests for Swift

TestNG was throwing up as its reflection was unable to find certain test methods
This commit is contained in:
Andrew Phillips 2014-04-18 19:30:13 -04:00
parent 641bc6fda0
commit d949137649
1 changed files with 11 additions and 0 deletions

View File

@ -41,4 +41,15 @@ public class SwiftContainerLiveTest extends BaseContainerLiveTest {
public void testPublicAccess() throws MalformedURLException, InterruptedException, IOException {
super.testPublicAccess();
}
@Test(dependsOnMethods = "testPublicAccess")
public void testPublicAccessInNonDefaultLocation() throws InterruptedException, MalformedURLException, IOException {
super.testPublicAccessInNonDefaultLocation();
}
@Test(dependsOnMethods = "testPublicAccess")
public void testPublicAccessInNonDefaultLocationWithBigBlob() throws InterruptedException, MalformedURLException,
IOException {
super.testPublicAccessInNonDefaultLocationWithBigBlob();
}
}