Skip to content

Commit

Permalink
Rename test suites that are really integration testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
mwoodiupui committed Jun 28, 2023
1 parent a533704 commit f66ca33
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
* @author Luca Giamminonni (luca.giamminonni at 4science.it)
*/
@RunWith(MockitoJUnitRunner.class)
public class RegexPasswordValidatorTest extends AbstractIntegrationTest {
public class RegexPasswordValidatorIT extends AbstractIntegrationTest {

@Mock
private ConfigurationService configurationService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import org.junit.Before;
import org.junit.Test;

public class RelationshipServiceImplVersioningTest extends AbstractIntegrationTestWithDatabase {
public class RelationshipServiceImplVersioningIT extends AbstractIntegrationTestWithDatabase {

private RelationshipService relationshipService;
private RelationshipDAO relationshipDAO;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
import org.junit.Test;
import org.springframework.beans.factory.config.AutowireCapableBeanFactory;

public class VersioningWithRelationshipsTest extends AbstractIntegrationTestWithDatabase {
public class VersioningWithRelationshipsIT extends AbstractIntegrationTestWithDatabase {

private final RelationshipService relationshipService =
ContentServiceFactory.getInstance().getRelationshipService();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@
* Created by: Andrew Wood
* Date: 20 Sep 2019
*/
public class RelationshipDAOImplTest extends AbstractIntegrationTest {
public class RelationshipDAOImplIT extends AbstractIntegrationTest {

private static final Logger log = org.apache.logging.log4j.LogManager.getLogger(RelationshipDAOImplTest.class);
private static final Logger log = org.apache.logging.log4j.LogManager.getLogger(RelationshipDAOImplIT.class);

private Relationship relationship;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
import org.junit.Before;
import org.junit.Test;

public class RelationshipTypeDAOImplTest extends AbstractIntegrationTest {
public class RelationshipTypeDAOImplIT extends AbstractIntegrationTest {

private static final Logger log = org.apache.logging.log4j.LogManager.getLogger(RelationshipTypeDAOImplTest.class);
private static final Logger log = org.apache.logging.log4j.LogManager.getLogger(RelationshipTypeDAOImplIT.class);

private Relationship relationship;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
import org.junit.Before;
import org.junit.Test;

public class ItemServiceTest extends AbstractIntegrationTestWithDatabase {
private static final Logger log = org.apache.logging.log4j.LogManager.getLogger(ItemServiceTest.class);
public class ItemServiceIT extends AbstractIntegrationTestWithDatabase {
private static final Logger log = org.apache.logging.log4j.LogManager.getLogger(ItemServiceIT.class);

protected RelationshipService relationshipService = ContentServiceFactory.getInstance().getRelationshipService();
protected RelationshipTypeService relationshipTypeService = ContentServiceFactory.getInstance()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import org.junit.Before;
import org.junit.Test;

public class VersionedHandleIdentifierProviderTest extends AbstractIntegrationTestWithDatabase {
public class VersionedHandleIdentifierProviderIT extends AbstractIntegrationTestWithDatabase {
private ServiceManager serviceManager;
private IdentifierServiceImpl identifierService;

Expand Down

0 comments on commit f66ca33

Please sign in to comment.