Skip to content

Commit 524a33a

Browse files
committed
Polishing.
Reduce test method visibility. See #2324.
1 parent 0065c17 commit 524a33a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/java/org/springframework/data/mapping/model/ClassGeneratingPropertyAccessorFactoryEntityTypeTests.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,26 +38,26 @@
3838
*/
3939
public class ClassGeneratingPropertyAccessorFactoryEntityTypeTests {
4040

41-
SampleMappingContext mappingContext = new SampleMappingContext();
41+
private SampleMappingContext mappingContext = new SampleMappingContext();
4242

4343
@Test // DATACMNS-853
44-
public void getIdentifierOfInterfaceBasedEntity() {
44+
void getIdentifierOfInterfaceBasedEntity() {
4545

4646
Algorithm quickSort = new QuickSort();
4747

4848
assertThat(getEntityInformation(Algorithm.class).getId(quickSort)).isEqualTo(quickSort.getName());
4949
}
5050

5151
@Test // DATACMNS-853
52-
public void getIdentifierOfClassBasedEntity() {
52+
void getIdentifierOfClassBasedEntity() {
5353

5454
Person jonDoe = new Person("JonDoe");
5555

5656
assertThat(getEntityInformation(Person.class).getId(jonDoe)).isEqualTo(jonDoe.name);
5757
}
5858

5959
@Test // #2324
60-
public void shouldGeneratePropertyAccessorForKotlinClassWithMultipleCopyMethods() {
60+
void shouldGeneratePropertyAccessorForKotlinClassWithMultipleCopyMethods() {
6161

6262
ClassGeneratingPropertyAccessorFactory factory = new ClassGeneratingPropertyAccessorFactory();
6363
PersistentPropertyAccessor<WithCustomCopyMethod> propertyAccessor = factory.getPropertyAccessor(

0 commit comments

Comments
 (0)