Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated data-storage-impl-s3 Test Files #299

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

class MultipartUploadS3StorageOutputStreamTest extends BaseMockitoTest {
class MultipartUploadS3StorageOutputStreamIT extends BaseMockitoTest {

private final byte[] shortChunk = randomBytes(100);
private final byte[] exactOneMultipartChunk = randomBytes(BUFFER_SIZE);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import static org.assertj.core.api.Assertions.fail;

@Slf4j
public class MultipartUploadS3SystemStorageServiceTest extends S3SystemStorageServiceTest {
public class MultipartUploadS3SystemStorageServiceIT extends S3SystemStorageServiceIT {

@TempDir
protected Path tempDir;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

@Slf4j
//TODO: Extract stuff related container start/stop/clear to separate class. Used in datasafe-business and in datasafe-storage-impl-s3
class S3SystemStorageServiceTest extends BaseMockitoTest {
class S3SystemStorageServiceIT extends BaseMockitoTest {

private static final String FILE = "file";
private static final String MESSAGE = "hello";
Expand Down
Loading