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

Update datasafe-simple-adapter-spring test files #301

Merged
Show file tree
Hide file tree
Changes from 2 commits
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 @@ -6,7 +6,7 @@
import org.springframework.test.context.ActiveProfiles;

@ActiveProfiles("filesystem")
public class InjectionForFilesystemTest extends InjectionTest {
public class InjectionForFilesystemTest extends InjectionIT {

@Autowired
SimpleDatasafeService datasafeService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@Slf4j
@ActiveProfiles("minio")
@UseDatasafeSpringConfiguration
public class InjectionForMinioTest extends InjectionTest {
public class InjectionForMinioIT extends InjectionIT {

@Autowired
private SpringDFSCredentialProperties dfsCredentialProperties;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
@ContextConfiguration
@SpringBootConfiguration
@UseDatasafeSpringConfiguration
public class InjectionTest extends WithStorageProvider {
public class InjectionIT extends WithStorageProvider {

public void testCreateUser(SimpleDatasafeService datasafeService) {
assertThat(datasafeService).isNotNull();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@Slf4j
@ActiveProfiles("fs-withoutPathEncryption")
@UseDatasafeSpringConfiguration
public class InjectionWithoutPathEncryptionForFilesystemTest extends InjectionTest {
public class InjectionWithoutPathEncryptionForFilesystemIT extends InjectionIT {
@Autowired
private SpringDFSCredentialProperties dfsCredentialProperties;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@Slf4j
@ActiveProfiles("minio-withoutPathEncryption")
@UseDatasafeSpringConfiguration
public class InjectionWithoutPathEncryptionForMinioTest extends InjectionTest {
public class InjectionWithoutPathEncryptionForMinioIT extends InjectionIT {
@Autowired
private SpringDFSCredentialProperties dfsCredentialProperties;

Expand Down
Loading