- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
注意:我知道在 spy 中我们可以区分这两者。
我浏览了整个互联网,但我仍然对 Mockito 中的 doreturn/何时和何时/然后返回有些疑问。以下是我的疑问,
1) doreturn/when 和 when/thenreturn 对于模拟对象的行为是否相同?
即:对于模拟对象调用 doreturn/when 或 when/thenreturn 并不重要,它不会调用真正的方法,而是调用 stub 调用。
我的理解是否正确?
2)doreturn/when 和 when/thenreturn 仅对 Mockito 中的 spy 对象有影响。
即 doreturn/when - 不会调用真正的方法,而 when/thenreturn 将调用真正的方法。我对此的理解是否正确?
如果我对以上 2 点的理解是正确的,那么我们应该始终使用 doreturn/when 以便我们不需要学习 2 语法,对吗?
最佳答案
Mockito documentation为 doReturn()
状态:
You can use doThrow(), doAnswer(), doNothing(), doReturn() and doCallRealMethod() in place of the corresponding call with when(), for any method. It is necessary when you
- stub void methods
- stub methods on spy objects (see below)
- stub the same method more than once, to change the behaviour of a mock in the middle of a test.
Use doReturn() in those rare occasions when you cannot use when(Object).
when(mock.foo()).thenThrow(new RuntimeException());
//Impossible: the exception-stubbed foo() method is called so RuntimeException is thrown. when(mock.foo()).thenReturn("bar");
//You have to use doReturn() for stubbing:
doReturn("bar").when(mock).foo();
when(...).thenReturn(...)
doReturn(...).when(...)
的语法和场合语法有用的很少。但是,重要的是要注意
when(...)
模拟 void 方法需要模式,这并不罕见。这只是
doReturn(...)
不太常用的语法。
when(...)
在模拟对象上调用 stub 方法。这就是为什么上面关于重新定义 stub 行为的极端情况很重要的原因。 关于junit - 为什么 Mock 对象有 doreturn 然后为 mock 返回?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41378300/
我有以下测试用例: ClassPathResource resource = new ClassPathResource(...); doReturn(resource.getInputStream(
我无法让 Mockito 覆盖我正在测试的类中的方法。 @Test public void test_classToTest() throws Exception { DependencyA
好吧,我显然不太明白 doReturn(...).when(...) 和 when(...).thenReturn(...) 之间的区别。 问题是,当我上课时,我用 @Mock 注释模拟,并在我想测试
我有这个工作正常的代码。 public class MyClass implements Serializable { ... private UploadedFile uploadedFile;
我想运行一个方法,即使在@Before我设置了 doReturn(mockResult).when(spyObject).getResult(); 对于我的所有其他测试方法来说这样做是有意义的,但我现
如果我有一个对象 MyObject,我想在调用该对象的某些方法时返回一些值。例如这样的事情: doReturn(someValue).when(Mockito.any(MyObject.class))
这是我正在测试的类(class): public class A { public Integer callMethod(){ return someMethod(); } private Int
我正在尝试对以下方法进行单元测试: Class TestClass { public List test(String a, String b, String c, String d) thr
我做了很多 Mockito spy ,只是在一个新项目中模仿我自己的工作示例。但这惨遭失败 import org.apache.http.HttpEntity; import org.apache.h
当我尝试模拟方法时,收到 UnfinishedStubbingException 。我试图让 doReturn 返回实现特定接口(interface)的类的模拟实例。该接口(interface)是被模
我是 Mockito 新手。我知道 spy 对象永远不会调用 doReturn 的原始方法,但在我的代码中,这没有发生 import static org.junit.Assert.assertTru
我有一个单例类来帮助我从控制台读取输入: public class IOHelper { public org.slf4j.Logger logger = Logger.logger;
我正在尝试通过 doReturn 方法使用 Mockito 深度 stub 功能。 当我在深度 stub 示例中使用 when 方法时,它工作正常: Foo mock = mock(Foo.class
我正在为 SOAP API 编写单元测试,我需要在其中模拟某个方法的响应,但该方法一直被调用。 我的单元测试的(相关)代码如下: import org.mockito.Matchers; import
我有一个 junit 测试,其中我在类中模拟了一个对象。让我们用名为 mocker 的 MyManager 的 @Mock 调用类 Mocker。 示例类: public class Mocker {
当我不能使用 Mockito.when() 时,如何使用 PowerMockito 中的 doReturn 模式来模拟静态方法? 我想测试以下静态方法: public static PrintWrit
我正在测试一些遗留代码并尝试模拟父类(super class)中的某些行为。奇怪的是,mockito 不会触发并返回我期望的值,在某些情况下,它甚至在 doReturn 行上抛出 Nullpointe
我有一个方法调用,需要在第一次调用时返回 valueA,在第二次调用时返回 valueB。我正在使用 PowerMockito spy ,所以如果我只需要返回一个值,它看起来像这样: PowerMoc
我要测试的类: import com.google.common.cache.CacheBuilder; import com.google.common.cache.CacheLoader; imp
我是 PowerMockito 的新手,它显示的行为我不明白。以下代码解释了我的问题: public class ClassOfInterest { private Object methodIW
我是一名优秀的程序员,十分优秀!