mirror of https://github.com/apache/jclouds.git
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:
parent
641bc6fda0
commit
d949137649
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue