mirror of https://github.com/apache/jclouds.git
JCLOUDS-894: Disable MultipartUploads tests
This commit is contained in:
parent
ff2d150d7d
commit
2585624d44
|
@ -94,15 +94,24 @@ public class GoogleCloudStorageBlobIntegrationLiveTest extends BaseBlobIntegrati
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Test(enabled = false)
|
@Test(groups = { "integration", "live" })
|
||||||
public void testFileGetParallel() throws SkipException {
|
public void testMultipartUploadSinglePart() throws SkipException {
|
||||||
// Implement Parallel uploads
|
throw new SkipException("Implement MultipartUploads uploads");
|
||||||
|
// TODO: Implement MultipartUploads uploads
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@Test(enabled = false)
|
@Test(groups = { "integration", "live" })
|
||||||
public void testPutFileParallel() throws SkipException {
|
public void testMultipartUploadMultipleParts() throws SkipException {
|
||||||
// Implement Parallel uploads
|
throw new SkipException("Implement MultipartUploads uploads");
|
||||||
|
// TODO: Implement MultipartUploads uploads
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Test(groups = { "integration", "live" })
|
||||||
|
public void testMultipartUploadNoPartsAbort() throws SkipException {
|
||||||
|
throw new SkipException("Implement MultipartUploads uploads");
|
||||||
|
// TODO: Implement MultipartUploads uploads
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue