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

Rename datasafe simple adapter spring test files #330

Merged
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 @@ -20,7 +20,7 @@

import static org.assertj.core.api.Assertions.assertThat;

class CleanupDbTest extends WithStorageProvider {
class CleanupDbIT extends WithStorageProvider {

private SimpleDatasafeService simpleDatasafeService;
private DFSCredentials dfsCredentials;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

import static org.assertj.core.api.Assertions.assertThat;

class DFSRelativeToRootProfileTest extends WithStorageProvider {
class DFSRelativeToRootProfileIT extends WithStorageProvider {

private SimpleDatasafeService simpleDatasafeService;
private UserIDAuth userIDAuth;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
import static org.junit.Assert.assertTrue;

@Slf4j
class SimpleAdapterFeatureTest extends BaseMockitoTest {
class SimpleAdapterFeatureIT extends BaseMockitoTest {
AssahBismarkabah marked this conversation as resolved.
Show resolved Hide resolved

private UserIDAuth userIDAuth = new UserIDAuth(new UserID("peter"), ReadKeyPasswordTestFactory.getForString("password"));
private String content = "content of document";
private String path = "a/b/c.txt";
Expand Down
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 InjectionIT {
public class InjectionForFilesystemIT extends InjectionIT {
AssahBismarkabah marked this conversation as resolved.
Show resolved Hide resolved

@Autowired
SimpleDatasafeService datasafeService;
Expand Down