Skip unimplemented test with transient blobstore

This commit is contained in:
Andrew Gaul 2013-09-16 02:37:46 -07:00
parent 1fc5806ec9
commit 94452a97cd
1 changed files with 8 additions and 0 deletions

View File

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