Skip unimplemented test with transient blobstore

This commit is contained in:
Andrew Gaul 2013-09-16 02:37:46 -07:00
parent 82b9704e52
commit 81c8b7bedc
1 changed files with 8 additions and 0 deletions

View File

@ -16,7 +16,10 @@
*/ */
package org.jclouds.blobstore.integration; package org.jclouds.blobstore.integration;
import java.io.IOException;
import org.jclouds.blobstore.integration.internal.BaseBlobIntegrationTest; import org.jclouds.blobstore.integration.internal.BaseBlobIntegrationTest;
import org.testng.SkipException;
import org.testng.annotations.Test; import org.testng.annotations.Test;
/** /**
@ -29,4 +32,9 @@ public class TransientBlobIntegrationTest extends BaseBlobIntegrationTest {
public TransientBlobIntegrationTest() { public TransientBlobIntegrationTest() {
provider = "transient"; provider = "transient";
} }
@Override
public void testPutIncorrectContentMD5() throws InterruptedException, IOException {
throw new SkipException("not yet implemented");
}
} }