首页 >Java >java教程 >Mockito 的 doReturn() 与 when():使用间谍对象时有什么区别?

Mockito 的 doReturn() 与 when():使用间谍对象时有什么区别?

Barbara Streisand
Barbara Streisand原创
2024-12-16 17:28:10544浏览

Mockito's doReturn() vs. when(): What's the Difference When Using Spied Objects?

理解Mockito的doReturn()和when()的区别

开发Spring MVC应用时,使用Mockito来模拟服务层对象是一种常见的做法。在探索 Mockito 的功能时,很明显 doReturn(...).when(...) 和when(...).thenReturn(...) 似乎执行相同的功能。这就引出了一个问题:这两种方法之间有什么区别吗?

当使用间谍对象(用@Spy注释)而不是模拟(用@注释)时,doReturn()和when()之间的关键区别变得明显Mock).

doReturn() 与带有 Spied 的when()对象

  • doReturn(...).when(...):允许您修改方法的返回值,而无需实际调用它。
  • when(...).thenReturn(...):在返回指定的值之前调用实际的方法执行

示例

考虑以下代码:

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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn