Skip to content

Commit

Permalink
Merge pull request #307 from adorsys/develop
Browse files Browse the repository at this point in the history
Merge pull request #298
  • Loading branch information
forkimenjeckayang committed Apr 13, 2024
2 parents f0cbb26 + 8dc96de commit ab63db4
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
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
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,25 @@
</pluginManagement>
</build>
</profile>
<profile>
<id>IT</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
<configuration>
<testFailureIgnore>false</testFailureIgnore>
<includes>
<include>**/*Test</include>
<include>**/*IT</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<distributionManagement>
Expand Down

0 comments on commit ab63db4

Please sign in to comment.