Skip to content

Commit f7152d1

Browse files
committed
Fix naming of integration tests to make sure we can run the ones for Hibernate and Eclipselink independently.
Ticket: #2899.
1 parent 5b5470c commit f7152d1

5 files changed

+6
-6
lines changed

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/QueryByExampleEclipseLinkIntegrationTests.java spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/EclipseLinkQueryByExampleIntegrationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
@ExtendWith(SpringExtension.class)
4444
@ContextConfiguration({ "classpath:eclipselink.xml", "classpath:config/namespace-application-context.xml" })
4545
@Transactional
46-
class QueryByExampleEclipseLinkIntegrationTests {
46+
class EclipseLinkQueryByExampleIntegrationTests {
4747

4848
@Autowired RoleRepository repository;
4949
@Autowired EntityManager em;
+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
@ExtendWith(SpringExtension.class)
4444
@ContextConfiguration({ "classpath:hibernate.xml", "classpath:config/namespace-application-context.xml" })
4545
@Transactional
46-
class QueryByExampleHibernateIntegrationTests {
46+
class QueryByExampleIntegrationTests {
4747

4848
@Autowired RoleRepository repository;
4949
@Autowired EntityManager em;
+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
@ExtendWith(SpringExtension.class)
7070
@ContextConfiguration
7171
@Transactional
72-
class MetaAnnotatedQueryMethodEclipseLinkIntegrationTests {
72+
class EclipseLinkMetaAnnotatedQueryMethodIntegrationTests {
7373

7474
@Autowired RoleRepositoryWithMeta repository;
7575

Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
@ExtendWith(SpringExtension.class)
6868
@ContextConfiguration
6969
@Transactional
70-
class MetaAnnotatedQueryMethodHibernateIntegrationTests {
70+
class MetaAnnotatedQueryMethodIntegrationTests {
7171

7272
@Autowired RoleRepositoryWithMeta repository;
7373

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
* @author Yuriy Tsarkov
5656
*/
5757
@ExtendWith(SpringExtension.class)
58-
@ContextConfiguration(classes = QueryWithNullLikeHibernateIntegrationTests.Config.class)
58+
@ContextConfiguration(classes = QueryWithNullLikeIntegrationTests.Config.class)
5959
@Transactional
60-
class QueryWithNullLikeHibernateIntegrationTests {
60+
class QueryWithNullLikeIntegrationTests {
6161

6262
@Autowired EmployeeWithNullLikeRepository repository;
6363

0 commit comments

Comments
 (0)