使用模拟框架 Mockito 增强测试能力时,开发人员经常会遇到 doReturn()和when() 方法。虽然这两种方法都用于存根方法调用,但在处理间谍对象(用 @Spy 注释)时,它们之间存在细微的区别。
when(...).thenReturn(...):
doReturn(...).when(...):
考虑以下内容MyClass:
public class MyClass { protected String methodToBeTested() { return anotherMethodInClass(); } protected String anotherMethodInClass() { throw new NullPointerException(); } }
doReturn(...).when(...):
@Spy private MyClass myClass; // Works as expected doReturn("test").when(myClass).anotherMethodInClass();
when(...).thenReturn(.. .):
// Throws a NullPointerException when(myClass.anotherMethodInClass()).thenReturn("test");
在这种情况下,doReturn() 确保异常避免了 anotherMethodInClass(),同时仍然返回所需的值。相比之下,when() 会触发实际的方法调用,导致抛出 NullPointerException。
因此,在处理间谍对象时,选择 doReturn() 和 when() 取决于您是否要调用实际方法或完全绕过它。
以上是Mockito:'doReturn()”与'when()”:什么时候应该对间谍对象使用which?的详细内容。更多信息请关注PHP中文网其他相关文章!