25
25
import static org .junit .platform .commons .function .Try .success ;
26
26
import static org .junit .platform .commons .util .ReflectionUtils .HierarchyTraversalMode .BOTTOM_UP ;
27
27
import static org .junit .platform .commons .util .ReflectionUtils .HierarchyTraversalMode .TOP_DOWN ;
28
+ import static org .junit .platform .commons .util .ReflectionUtils .findFields ;
28
29
import static org .junit .platform .commons .util .ReflectionUtils .findMethod ;
29
30
import static org .junit .platform .commons .util .ReflectionUtils .findMethods ;
30
31
import static org .junit .platform .commons .util .ReflectionUtils .invokeMethod ;
@@ -1388,7 +1389,7 @@ void readFieldValuesPreconditions() {
1388
1389
1389
1390
@ Test
1390
1391
void readFieldValuesFromInstance () {
1391
- var fields = ReflectionUtils . findFields (ClassWithFields .class , f -> true , TOP_DOWN );
1392
+ var fields = findFields (ClassWithFields .class , f -> true , TOP_DOWN );
1392
1393
1393
1394
var values = ReflectionUtils .readFieldValues (fields , new ClassWithFields ());
1394
1395
@@ -1397,7 +1398,7 @@ void readFieldValuesFromInstance() {
1397
1398
1398
1399
@ Test
1399
1400
void readFieldValuesFromClass () {
1400
- var fields = ReflectionUtils . findFields (ClassWithFields .class , ReflectionUtils ::isStatic , TOP_DOWN );
1401
+ var fields = findFields (ClassWithFields .class , ReflectionUtils ::isStatic , TOP_DOWN );
1401
1402
1402
1403
var values = ReflectionUtils .readFieldValues (fields , null );
1403
1404
@@ -1406,7 +1407,7 @@ void readFieldValuesFromClass() {
1406
1407
1407
1408
@ Test
1408
1409
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 );
1410
1411
1411
1412
var values = ReflectionUtils .readFieldValues (fields , new ClassWithFields (), isA (String .class ));
1412
1413
@@ -1415,8 +1416,7 @@ void readFieldValuesFromInstanceWithTypeFilterForString() {
1415
1416
1416
1417
@ Test
1417
1418
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 );
1420
1420
1421
1421
var values = ReflectionUtils .readFieldValues (fields , null , isA (String .class ));
1422
1422
@@ -1425,7 +1425,7 @@ void readFieldValuesFromClassWithTypeFilterForString() {
1425
1425
1426
1426
@ Test
1427
1427
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 );
1429
1429
1430
1430
var values = ReflectionUtils .readFieldValues (fields , new ClassWithFields (), isA (int .class ));
1431
1431
@@ -1434,8 +1434,7 @@ void readFieldValuesFromInstanceWithTypeFilterForInteger() {
1434
1434
1435
1435
@ Test
1436
1436
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 );
1439
1438
1440
1439
var values = ReflectionUtils .readFieldValues (fields , null , isA (Integer .class ));
1441
1440
@@ -1444,7 +1443,7 @@ void readFieldValuesFromClassWithTypeFilterForInteger() {
1444
1443
1445
1444
@ Test
1446
1445
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 );
1448
1447
1449
1448
var values = ReflectionUtils .readFieldValues (fields , new ClassWithFields (), isA (double .class ));
1450
1449
@@ -1453,8 +1452,7 @@ void readFieldValuesFromInstanceWithTypeFilterForDouble() {
1453
1452
1454
1453
@ Test
1455
1454
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 );
1458
1456
1459
1457
var values = ReflectionUtils .readFieldValues (fields , null , isA (Double .class ));
1460
1458
0 commit comments