mirror of https://github.com/apache/jclouds.git
we must explicitly disable inherited test methods in surefire even when the class is disabled
git-svn-id: http://jclouds.googlecode.com/svn/trunk@1857 3d8758e0-26b5-11de-8745-db77d3ebf521
This commit is contained in:
parent
4d9ccc797e
commit
1740912593
|
@ -25,6 +25,8 @@ package org.jclouds.aws.s3;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.TimeoutException;
|
||||||
|
|
||||||
import org.jclouds.gae.config.GaeHttpCommandExecutorServiceModule;
|
import org.jclouds.gae.config.GaeHttpCommandExecutorServiceModule;
|
||||||
import org.testng.annotations.BeforeMethod;
|
import org.testng.annotations.BeforeMethod;
|
||||||
|
@ -40,9 +42,74 @@ import com.google.inject.Module;
|
||||||
*
|
*
|
||||||
* @author Adrian Cole
|
* @author Adrian Cole
|
||||||
*/
|
*/
|
||||||
@Test(enabled = false, sequential = true, testName = "s3.JCloudsGaePerformanceLiveTest", groups = { "live" })
|
@Test(enabled = false, sequential = true, testName = "s3.JCloudsGaePerformanceLiveTest", groups = { "disabled" })
|
||||||
public class JCloudsGaePerformanceLiveTest extends BaseJCloudsPerformance {
|
public class JCloudsGaePerformanceLiveTest extends BaseJCloudsPerformance {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Test(enabled = false)
|
||||||
|
public void testPutBytesParallel() throws InterruptedException, ExecutionException,
|
||||||
|
TimeoutException {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Test(enabled = false)
|
||||||
|
public void testPutBytesParallelEU() throws InterruptedException, ExecutionException,
|
||||||
|
TimeoutException {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Test(enabled = false)
|
||||||
|
public void testPutBytesSerial() throws Exception {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Test(enabled = false)
|
||||||
|
public void testPutBytesSerialEU() throws Exception {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Test(enabled = false)
|
||||||
|
public void testPutFileParallel() throws InterruptedException, ExecutionException,
|
||||||
|
TimeoutException {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Test(enabled = false)
|
||||||
|
public void testPutFileSerial() throws Exception {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Test(enabled = false)
|
||||||
|
public void testPutInputStreamParallel() throws InterruptedException, ExecutionException,
|
||||||
|
TimeoutException {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Test(enabled = false)
|
||||||
|
public void testPutInputStreamSerial() throws Exception {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Test(enabled = false)
|
||||||
|
public void testPutStringParallel() throws InterruptedException, ExecutionException,
|
||||||
|
TimeoutException {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Test(enabled = false)
|
||||||
|
public void testPutStringSerial() throws Exception {
|
||||||
|
throw new UnsupportedOperationException();
|
||||||
|
}
|
||||||
|
|
||||||
public JCloudsGaePerformanceLiveTest() {
|
public JCloudsGaePerformanceLiveTest() {
|
||||||
super();
|
super();
|
||||||
// otherwise, we'll get timeout errors
|
// otherwise, we'll get timeout errors
|
||||||
|
|
Loading…
Reference in New Issue