Skip to content

Commit 1d1eb85

Browse files
committed
Polishing
(cherry picked from commit c295788)
1 parent 5ce280e commit 1d1eb85

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

platform-tests/src/test/java/org/junit/platform/commons/util/ReflectionUtilsTests.java

+9-11
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import static org.junit.platform.commons.function.Try.success;
2626
import static org.junit.platform.commons.util.ReflectionUtils.HierarchyTraversalMode.BOTTOM_UP;
2727
import static org.junit.platform.commons.util.ReflectionUtils.HierarchyTraversalMode.TOP_DOWN;
28+
import static org.junit.platform.commons.util.ReflectionUtils.findFields;
2829
import static org.junit.platform.commons.util.ReflectionUtils.findMethod;
2930
import static org.junit.platform.commons.util.ReflectionUtils.findMethods;
3031
import static org.junit.platform.commons.util.ReflectionUtils.invokeMethod;
@@ -1388,7 +1389,7 @@ void readFieldValuesPreconditions() {
13881389

13891390
@Test
13901391
void readFieldValuesFromInstance() {
1391-
var fields = ReflectionUtils.findFields(ClassWithFields.class, f -> true, TOP_DOWN);
1392+
var fields = findFields(ClassWithFields.class, f -> true, TOP_DOWN);
13921393

13931394
var values = ReflectionUtils.readFieldValues(fields, new ClassWithFields());
13941395

@@ -1397,7 +1398,7 @@ void readFieldValuesFromInstance() {
13971398

13981399
@Test
13991400
void readFieldValuesFromClass() {
1400-
var fields = ReflectionUtils.findFields(ClassWithFields.class, ReflectionUtils::isStatic, TOP_DOWN);
1401+
var fields = findFields(ClassWithFields.class, ReflectionUtils::isStatic, TOP_DOWN);
14011402

14021403
var values = ReflectionUtils.readFieldValues(fields, null);
14031404

@@ -1406,7 +1407,7 @@ void readFieldValuesFromClass() {
14061407

14071408
@Test
14081409
void readFieldValuesFromInstanceWithTypeFilterForString() {
1409-
var fields = ReflectionUtils.findFields(ClassWithFields.class, isA(String.class), TOP_DOWN);
1410+
var fields = findFields(ClassWithFields.class, isA(String.class), TOP_DOWN);
14101411

14111412
var values = ReflectionUtils.readFieldValues(fields, new ClassWithFields(), isA(String.class));
14121413

@@ -1415,8 +1416,7 @@ void readFieldValuesFromInstanceWithTypeFilterForString() {
14151416

14161417
@Test
14171418
void readFieldValuesFromClassWithTypeFilterForString() {
1418-
var fields = ReflectionUtils.findFields(ClassWithFields.class, isA(String.class).and(ReflectionUtils::isStatic),
1419-
TOP_DOWN);
1419+
var fields = findFields(ClassWithFields.class, isA(String.class).and(ReflectionUtils::isStatic), TOP_DOWN);
14201420

14211421
var values = ReflectionUtils.readFieldValues(fields, null, isA(String.class));
14221422

@@ -1425,7 +1425,7 @@ void readFieldValuesFromClassWithTypeFilterForString() {
14251425

14261426
@Test
14271427
void readFieldValuesFromInstanceWithTypeFilterForInteger() {
1428-
var fields = ReflectionUtils.findFields(ClassWithFields.class, isA(int.class), TOP_DOWN);
1428+
var fields = findFields(ClassWithFields.class, isA(int.class), TOP_DOWN);
14291429

14301430
var values = ReflectionUtils.readFieldValues(fields, new ClassWithFields(), isA(int.class));
14311431

@@ -1434,8 +1434,7 @@ void readFieldValuesFromInstanceWithTypeFilterForInteger() {
14341434

14351435
@Test
14361436
void readFieldValuesFromClassWithTypeFilterForInteger() {
1437-
var fields = ReflectionUtils.findFields(ClassWithFields.class,
1438-
isA(Integer.class).and(ReflectionUtils::isStatic), TOP_DOWN);
1437+
var fields = findFields(ClassWithFields.class, isA(Integer.class).and(ReflectionUtils::isStatic), TOP_DOWN);
14391438

14401439
var values = ReflectionUtils.readFieldValues(fields, null, isA(Integer.class));
14411440

@@ -1444,7 +1443,7 @@ void readFieldValuesFromClassWithTypeFilterForInteger() {
14441443

14451444
@Test
14461445
void readFieldValuesFromInstanceWithTypeFilterForDouble() {
1447-
var fields = ReflectionUtils.findFields(ClassWithFields.class, isA(double.class), TOP_DOWN);
1446+
var fields = findFields(ClassWithFields.class, isA(double.class), TOP_DOWN);
14481447

14491448
var values = ReflectionUtils.readFieldValues(fields, new ClassWithFields(), isA(double.class));
14501449

@@ -1453,8 +1452,7 @@ void readFieldValuesFromInstanceWithTypeFilterForDouble() {
14531452

14541453
@Test
14551454
void readFieldValuesFromClassWithTypeFilterForDouble() {
1456-
var fields = ReflectionUtils.findFields(ClassWithFields.class, isA(Double.class).and(ReflectionUtils::isStatic),
1457-
TOP_DOWN);
1455+
var fields = findFields(ClassWithFields.class, isA(Double.class).and(ReflectionUtils::isStatic), TOP_DOWN);
14581456

14591457
var values = ReflectionUtils.readFieldValues(fields, null, isA(Double.class));
14601458

0 commit comments

Comments
 (0)