理解Mockito的doReturn()和when()的区别
开发Spring MVC应用时,使用Mockito来模拟服务层对象是一种常见的做法。在探索 Mockito 的功能时,很明显 doReturn(...).when(...) 和when(...).thenReturn(...) 似乎执行相同的功能。这就引出了一个问题:这两种方法之间有什么区别吗?
当使用间谍对象(用@Spy注释)而不是模拟(用@注释)时,doReturn()和when()之间的关键区别变得明显Mock).
doReturn() 与带有 Spied 的when()对象
示例
考虑以下代码:
public class MyClass { protected String methodToBeTested() { return anotherMethodInClass(); } protected String anotherMethodInClass() { throw new NullPointerException(); } }
测试用例:
@Spy private MyClass myClass; // Works fine, does not invoke anotherMethodInClass() doReturn("test").when(myClass).anotherMethodInClass(); // Throws NullPointerException because anotherMethodInClass() is invoked when(myClass.anotherMethodInClass()).thenReturn("test");
总而言之,在使用间谍对象时, doReturn() 允许您跳过方法执行并直接设置返回值,而when() 在返回所需值之前调用实际方法。在 Mockito 中使用间谍对象时,这种理解至关重要。
以上是Mockito 的 doReturn() 与 when():使用间谍对象时有什么区别?的详细内容。更多信息请关注PHP中文网其他相关文章!