public static void setField(Object targetObject,
String name,
Object value)
Set the field with the given name on the provided targetObject to the supplied value.
This method delegates to setField(Object, String, Object, Class), supplying null for the type argument.
Parameters:
targetObject - the target object on which to set the field; never null
name - the name of the field to set; never null
value - the value to set
class A{
int getValue();
}
class B{
A a;
int caculate(){
...
int v = a.getValue();
....
}
}
class ServiceTest{
@Test
public void caculateTest(){
B serviceB = new B();
A serviceA = Mockito.mock(A.class);
Mockito.when(serviceA.getValue()).thenReturn(5);
ReflectionTestUtils.setField(serviceB, "a", serviceA);
}
}
5条答案
按热度按时间oymdgrw71#
正如在评论中提到的,java文档很好地解释了用法。但我也想给予你一个简单的例子。
假设您有一个具有私有或受保护字段访问权限的Entity类,并且没有提供setter方法。
在测试类中,由于缺少setter方法,因此无法设置
entity
的id
。使用
ReflectionTestUtils.setField
,您可以执行此操作以进行测试:参数描述如下:
但是给予一试,读一读docs。
gstyhher2#
另一个使用案例:
我们具体化了许多属性,例如:应用程序属性中的URL、端点和许多其他属性,如下所示:
然后将其用于如下应用中:
每当我们编写单元测试时,我们都会得到NullPointerException,因为Spring不能像@Autowired那样注入@value。(至少目前,我不知道替代方法。)因此,为了避免这种情况,我们可以使用ReflectionTestUtils来注入外部化属性。如下所示:
mrfwxfqh3#
当我们要编写单元测试时,它非常有用,例如:
amrnrhlw4#
感谢您的上述讨论,下面的部分也可以通过阅读application-test.properties中的属性来编写单元测试。
8wigbo565#
ReflectionTestUtils.setField
被用于各种上下文,但最常见的情况是当你有一个类,里面有私有访问的属性,你想测试这个类.因此,一个可能的解决方案是使用
ReflectionTestUtils
,如下例所示:在这个例子中,你可以看到,
ReflectionTestUtils.setField
被用来设置私有字段的值,因为它没有setter方法。