Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
TAKETODAY committed Apr 9, 2024
1 parent 65408a7 commit 5472407
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,11 @@ static Object getField(Object targetObject, String name) {
return ReflectionTestUtils.getField(targetObject, name);
}

@Nullable
static Object getField(Class<?> targetClass, String name) {
return ReflectionTestUtils.getField(targetClass, name);
}

private static void assertSetFieldAndGetFieldBehaviorForProxy(Person proxy, Person target) {
assertSetFieldAndGetFieldBehavior(proxy);

Expand Down

0 comments on commit 5472407

Please sign in to comment.