Skip to content

Commit 91e8868

Browse files
committed
Use default visibility for test classes when possible.
Related: #2746.
1 parent e917cbf commit 91e8868

File tree

67 files changed

+68
-68
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+68
-68
lines changed

spring-data-jpa/src/test/java/org/springframework/data/jpa/convert/threeten/Jsr310JpaConvertersIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
*/
4545
@ContextConfiguration
4646
@Transactional
47-
public class Jsr310JpaConvertersIntegrationTests extends AbstractAttributeConverterIntegrationTests {
47+
class Jsr310JpaConvertersIntegrationTests extends AbstractAttributeConverterIntegrationTests {
4848

4949
@PersistenceContext EntityManager em;
5050

spring-data-jpa/src/test/java/org/springframework/data/jpa/domain/support/AuditingEntityListenerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
@ContextConfiguration("classpath:auditing/auditing-entity-listener.xml")
4747
@Transactional
4848
@DirtiesContext
49-
public class AuditingEntityListenerTests {
49+
class AuditingEntityListenerTests {
5050

5151
@Autowired AuditableUserRepository repository;
5252
@Autowired AnnotatedAuditableUserRepository annotatedUserRepository;

spring-data-jpa/src/test/java/org/springframework/data/jpa/domain/support/AuditingEntityWithEmbeddableListenerTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
*/
3838
@ExtendWith(SpringExtension.class)
3939
@ContextConfiguration("classpath:auditing/auditing-entity-with-embeddable-listener.xml")
40-
public class AuditingEntityWithEmbeddableListenerTests {
40+
class AuditingEntityWithEmbeddableListenerTests {
4141

4242
@Autowired AuditableEntityRepository repository;
4343

spring-data-jpa/src/test/java/org/springframework/data/jpa/domain/support/QueryByExampleWithOptionalEmptyTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
*/
4141
@ExtendWith(SpringExtension.class)
4242
@ContextConfiguration
43-
public class QueryByExampleWithOptionalEmptyTests {
43+
class QueryByExampleWithOptionalEmptyTests {
4444

4545
@Autowired UserWithOptionalFieldRepository repository;
4646
UserWithOptionalField user;

spring-data-jpa/src/test/java/org/springframework/data/jpa/mapping/JpaPersistentPropertyImplUnitTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
*/
5656
@ExtendWith(MockitoExtension.class)
5757
@MockitoSettings(strictness = Strictness.LENIENT)
58-
public class JpaPersistentPropertyImplUnitTests {
58+
class JpaPersistentPropertyImplUnitTests {
5959

6060
@Mock Metamodel model;
6161

spring-data-jpa/src/test/java/org/springframework/data/jpa/provider/HibernateJpaParametersParameterAccessorUnitTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323
@ExtendWith(SpringExtension.class)
2424
@ContextConfiguration("classpath:hjppa-test.xml")
25-
public class HibernateJpaParametersParameterAccessorUnitTests {
25+
class HibernateJpaParametersParameterAccessorUnitTests {
2626

2727
@Autowired private EntityManager em;
2828

spring-data-jpa/src/test/java/org/springframework/data/jpa/provider/PersistenceProviderIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
*/
4949
@ExtendWith(SpringExtension.class)
5050
@ContextConfiguration
51-
public class PersistenceProviderIntegrationTests {
51+
public abstract class PersistenceProviderIntegrationTests {
5252

5353
@Autowired CategoryRepository categories;
5454
@Autowired ProductRepository products;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
@Transactional
4242
@ExtendWith(SpringExtension.class)
4343
@ContextConfiguration(locations = { "classpath:config/namespace-autoconfig-context.xml" })
44-
public class AbstractPersistableIntegrationTests {
44+
class AbstractPersistableIntegrationTests {
4545

4646
@Autowired CustomAbstractPersistableRepository repository;
4747
@Autowired EntityManager em;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
@Transactional
3636
@ExtendWith(SpringExtension.class)
3737
@ContextConfiguration(locations = { "classpath:config/namespace-autoconfig-context.xml" })
38-
public class CustomAbstractPersistableIntegrationTests {
38+
class CustomAbstractPersistableIntegrationTests {
3939

4040
@Autowired CustomAbstractPersistableRepository repository;
4141

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
@ExtendWith(SpringExtension.class)
6161
@ContextConfiguration("classpath:config/namespace-autoconfig-context.xml")
6262
@Transactional
63-
public class EntityGraphRepositoryMethodsIntegrationTests {
63+
class EntityGraphRepositoryMethodsIntegrationTests {
6464

6565
@Autowired EntityManager em;
6666
@Autowired RepositoryMethodsWithEntityGraphConfigRepository repository;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
@ExtendWith(SpringExtension.class)
3434
@ContextConfiguration("classpath:config/namespace-application-context.xml")
3535
@Transactional
36-
public class EntityWithAssignedIdIntegrationTests {
36+
class EntityWithAssignedIdIntegrationTests {
3737

3838
@Autowired EntityWithAssignedIdRepository repository;
3939

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
@Transactional
5252
@ExtendWith(SpringExtension.class)
5353
@ContextConfiguration(classes = SampleConfig.class)
54-
public class MappedTypeRepositoryIntegrationTests {
54+
class MappedTypeRepositoryIntegrationTests {
5555

5656
@Autowired ConcreteRepository1 concreteRepository1;
5757
@Autowired ConcreteRepository2 concreteRepository2;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* @author Eberhard Wolff
3333
*/
3434
@ContextConfiguration(locations = "classpath:config/namespace-application-context.xml", inheritLocations = false)
35-
public class NamespaceUserRepositoryTests extends UserRepositoryTests {
35+
class NamespaceUserRepositoryTests extends UserRepositoryTests {
3636

3737
@Autowired
3838
ListableBeanFactory beanFactory;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
*/
3434
@ExtendWith(SpringExtension.class)
3535
@ContextConfiguration(locations = "classpath:infrastructure.xml")
36-
public class ORMInfrastructureTests {
36+
class ORMInfrastructureTests {
3737

3838
@Autowired ApplicationContext context;
3939

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
@Transactional
4949
@ExtendWith(SpringExtension.class)
5050
@ContextConfiguration("classpath:config/namespace-application-context.xml")
51-
public class ParentRepositoryIntegrationTests {
51+
class ParentRepositoryIntegrationTests {
5252

5353
@Autowired ParentRepository repository;
5454

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

Lines changed: 1 addition & 1 deletion
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-
public class QueryByExampleEclipseLinkIntegrationTests {
46+
class QueryByExampleEclipseLinkIntegrationTests {
4747

4848
@Autowired RoleRepository repository;
4949
@Autowired EntityManager em;

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

Lines changed: 1 addition & 1 deletion
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-
public class QueryByExampleHibernateIntegrationTests {
46+
class QueryByExampleHibernateIntegrationTests {
4747

4848
@Autowired RoleRepository repository;
4949
@Autowired EntityManager em;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
@ExtendWith(SpringExtension.class)
4141
@ContextConfiguration(classes = SampleConfig.class)
4242
@Transactional
43-
public class RedeclaringRepositoryMethodsTests {
43+
class RedeclaringRepositoryMethodsTests {
4444

4545
@Autowired RedeclaringRepositoryMethodsRepository repository;
4646

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
@ExtendWith(SpringExtension.class)
5656
@ContextConfiguration(classes = SampleConfig.class)
5757
@Transactional
58-
public class RepositoryWithCompositeKeyTests {
58+
class RepositoryWithCompositeKeyTests {
5959

6060
@Autowired EmployeeRepositoryWithIdClass employeeRepositoryWithIdClass;
6161
@Autowired EmployeeRepositoryWithEmbeddedId employeeRepositoryWithEmbeddedId;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
@ExtendWith(SpringExtension.class)
4949
@ContextConfiguration(classes = RepositoryWithIdClassKeyTests.TestConfig.class)
5050
@Transactional
51-
public class RepositoryWithIdClassKeyTests {
51+
class RepositoryWithIdClassKeyTests {
5252

5353
@Autowired private SiteRepository siteRepository;
5454

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
@ExtendWith(SpringExtension.class)
3939
@ContextConfiguration(locations = { "classpath:application-context.xml" })
4040
@Transactional
41-
public class RoleRepositoryIntegrationTests {
41+
class RoleRepositoryIntegrationTests {
4242

4343
@Autowired RoleRepository repository;
4444

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*/
3636
@ExtendWith(SpringExtension.class)
3737
@ContextConfiguration("classpath:config/namespace-application-context.xml")
38-
public class SPR8954Tests {
38+
class SPR8954Tests {
3939

4040
@Autowired ApplicationContext context;
4141

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
@Transactional
5454
@ContextConfiguration(classes = StoredProcedureIntegrationTests.TestConfig.class)
5555
@ExtendWith(SpringExtension.class)
56-
public class StoredProcedureIntegrationTests {
56+
class StoredProcedureIntegrationTests {
5757

5858
private static final String NOT_SUPPORTED = "Stored procedures with REF_CURSOR are currently not supported by HSQL dialect";
5959

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
@ExtendWith(SpringExtension.class)
5858
@ContextConfiguration(locations = "classpath:config/namespace-application-context.xml")
5959
@Transactional
60-
public class UserRepositoryFinderTests {
60+
class UserRepositoryFinderTests {
6161

6262
@Autowired UserRepository userRepository;
6363
@Autowired RoleRepository roleRepository;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
@ExtendWith(SpringExtension.class)
4848
@ContextConfiguration("classpath:application-context.xml")
4949
@Transactional
50-
public class UserRepositoryStoredProcedureIntegrationTests {
50+
class UserRepositoryStoredProcedureIntegrationTests {
5151

5252
@Autowired UserRepository repository;
5353
@PersistenceContext EntityManager em;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
@ExtendWith(SpringExtension.class)
112112
@ContextConfiguration("classpath:application-context.xml")
113113
@Transactional
114-
public class UserRepositoryTests {
114+
class UserRepositoryTests {
115115

116116
@PersistenceContext EntityManager em;
117117

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/cdi/JpaQueryRewriterWithCdiIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
*
4747
* @author Greg Turnquist
4848
*/
49-
public class JpaQueryRewriterWithCdiIntegrationTests {
49+
class JpaQueryRewriterWithCdiIntegrationTests {
5050

5151
private static SeContainer container;
5252
private static Log LOGGER = LogFactory.getLog(CdiExtensionIntegrationTests.class);

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/config/AllowNestedRepositoriesRepositoryConfigTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* @author Jens Schauder
3131
*/
3232
@ContextConfiguration(locations = "classpath:config/namespace-nested-repositories-application-context.xml")
33-
public class AllowNestedRepositoriesRepositoryConfigTests extends AbstractRepositoryConfigTests {
33+
class AllowNestedRepositoriesRepositoryConfigTests extends AbstractRepositoryConfigTests {
3434

3535
@Autowired NestedUserRepository fooRepository;
3636

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/config/CustomRepositoryFactoryConfigTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
*/
4343
@ExtendWith(SpringExtension.class)
4444
@ContextConfiguration(locations = "classpath:config/namespace-customfactory-context.xml")
45-
public class CustomRepositoryFactoryConfigTests {
45+
class CustomRepositoryFactoryConfigTests {
4646

4747
@Autowired(required = false) UserCustomExtendedRepository userRepository;
4848

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/config/JpaRepositoriesRegistrarIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
*/
5454
@ExtendWith(SpringExtension.class)
5555
@ContextConfiguration
56-
public class JpaRepositoriesRegistrarIntegrationTests {
56+
class JpaRepositoriesRegistrarIntegrationTests {
5757

5858
@Autowired UserRepository repository;
5959

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/config/NestedRepositoriesJavaConfigTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*/
3939
@ExtendWith(SpringExtension.class)
4040
@ContextConfiguration
41-
public class NestedRepositoriesJavaConfigTests {
41+
class NestedRepositoriesJavaConfigTests {
4242

4343
@Autowired NestedUserRepository nestedUserRepository;
4444

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/config/QueryLookupStrategyTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*/
3939
@ExtendWith(SpringExtension.class)
4040
@ContextConfiguration(locations = "classpath:config/lookup-strategies-context.xml")
41-
public class QueryLookupStrategyTests {
41+
class QueryLookupStrategyTests {
4242

4343
@Autowired ApplicationContext context;
4444

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/config/RepositoriesJavaConfigTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
*/
4040
@ExtendWith(SpringExtension.class)
4141
@ContextConfiguration
42-
public class RepositoriesJavaConfigTests {
42+
class RepositoriesJavaConfigTests {
4343

4444
@Autowired Repositories repositories;
4545

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/procedures/MySqlStoredProcedureIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
@Transactional
6969
@ExtendWith(SpringExtension.class)
7070
@ContextConfiguration(classes = MySqlStoredProcedureIntegrationTests.Config.class)
71-
public class MySqlStoredProcedureIntegrationTests {
71+
class MySqlStoredProcedureIntegrationTests {
7272

7373
@Autowired EmployeeRepositoryWithNoCursor repository;
7474

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/procedures/PostgresStoredProcedureIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
@Transactional
7171
@ExtendWith(SpringExtension.class)
7272
@ContextConfiguration(classes = PostgresStoredProcedureIntegrationTests.Config.class)
73-
public class PostgresStoredProcedureIntegrationTests {
73+
class PostgresStoredProcedureIntegrationTests {
7474

7575
@Autowired EmployeeRepositoryWithRefCursor repository;
7676

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/procedures/PostgresStoredProcedureNullHandlingIntegrationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
@Transactional
6666
@ExtendWith(SpringExtension.class)
6767
@ContextConfiguration(classes = PostgresStoredProcedureNullHandlingIntegrationTests.Config.class)
68-
public class PostgresStoredProcedureNullHandlingIntegrationTests {
68+
class PostgresStoredProcedureNullHandlingIntegrationTests {
6969

7070
@Autowired TestModelRepository repository;
7171

@@ -83,7 +83,7 @@ void invokingNullOnTemporalStoredProcedureParameterShouldWork() {
8383
@AllArgsConstructor
8484
@NoArgsConstructor(access = AccessLevel.PROTECTED)
8585
@Entity
86-
public class TestModel {
86+
class TestModel {
8787

8888
@Id
8989
@GeneratedValue(strategy = GenerationType.AUTO) private long id;

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/projections/ProjectionJoinIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
@Transactional
4545
@ExtendWith(SpringExtension.class)
4646
@ContextConfiguration(classes = ProjectionsIntegrationTests.Config.class)
47-
public class ProjectionJoinIntegrationTests {
47+
class ProjectionJoinIntegrationTests {
4848

4949
@Autowired private UserRepository userRepository;
5050

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/projections/ProjectionsIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
@Transactional
6363
@ExtendWith(SpringExtension.class)
6464
@ContextConfiguration(classes = Config.class)
65-
public class ProjectionsIntegrationTests {
65+
class ProjectionsIntegrationTests {
6666

6767
@Autowired DummyEntityWithCollectionRepository repository;
6868

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/query/AbstractJpaQueryTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
*/
6060
@ExtendWith(SpringExtension.class)
6161
@ContextConfiguration("classpath:infrastructure.xml")
62-
public class AbstractJpaQueryTests {
62+
class AbstractJpaQueryTests {
6363

6464
@PersistenceContext EntityManager em;
6565

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/query/AbstractStringBasedJpaQueryIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
*/
5353
@ExtendWith(SpringExtension.class)
5454
@ContextConfiguration("classpath:infrastructure.xml")
55-
public class AbstractStringBasedJpaQueryIntegrationTests {
55+
class AbstractStringBasedJpaQueryIntegrationTests {
5656

5757
@PersistenceContext EntityManager em;
5858

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/query/CustomNonBindableJpaParametersIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
*/
4949
@ExtendWith(SpringExtension.class)
5050
@ContextConfiguration
51-
public class CustomNonBindableJpaParametersIntegrationTests {
51+
class CustomNonBindableJpaParametersIntegrationTests {
5252

5353
@Autowired ProductRepository products;
5454

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/query/Jpa21UtilsTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
@ExtendWith(SpringExtension.class)
5555
@ContextConfiguration("classpath:application-context.xml")
5656
@Transactional
57-
public class Jpa21UtilsTests {
57+
class Jpa21UtilsTests {
5858

5959
@Autowired EntityManager em;
6060

spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/query/JpaCountQueryCreatorIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
*/
5050
@ExtendWith(SpringExtension.class)
5151
@ContextConfiguration("classpath:infrastructure.xml")
52-
public class JpaCountQueryCreatorIntegrationTests {
52+
class JpaCountQueryCreatorIntegrationTests {
5353

5454
@PersistenceContext EntityManager entityManager;
5555

0 commit comments

Comments
 (0)