You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by an...@apache.org on 2014/04/19 01:31:27 UTC

git commit: First attempt at fixing 538 by adding dummy override methods for TestNG

Repository: jclouds
Updated Branches:
  refs/heads/fix-jclouds-538 [created] 0e15ec16b


First attempt at fixing 538 by adding dummy override methods for TestNG


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/0e15ec16
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/0e15ec16
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/0e15ec16

Branch: refs/heads/fix-jclouds-538
Commit: 0e15ec16b7931161c83a62de77f446f1573b274c
Parents: 5fabd87
Author: Andrew Phillips <an...@apache.org>
Authored: Fri Apr 18 19:30:13 2014 -0400
Committer: Andrew Phillips <an...@apache.org>
Committed: Fri Apr 18 19:30:42 2014 -0400

----------------------------------------------------------------------
 .../blobstore/integration/SwiftContainerLiveTest.java    | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/0e15ec16/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java
----------------------------------------------------------------------
diff --git a/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java b/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java
index 14d2204..7296fa9 100644
--- a/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java
+++ b/apis/swift/src/test/java/org/jclouds/openstack/swift/blobstore/integration/SwiftContainerLiveTest.java
@@ -44,4 +44,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();
+   }
 }