Mockito : doAnswer Vs thenReturn(Mockito:doAnswer Vs thenReturn)
问题描述
我正在使用 Mockito 进行后期单元测试.我对何时使用 doAnswer 和 thenReturn 感到困惑.
I am using Mockito for service later unit testing. I am confused when to use doAnswer vs thenReturn.
谁能帮我详细介绍一下?到目前为止,我已经用 thenReturn 进行了尝试.
Can anyone help me in detail? So far, I have tried it with thenReturn.
推荐答案
当你在 mock 一个方法时知道返回值时,你应该使用 thenReturn 或 doReturn称呼.调用模拟方法时会返回此定义的值.
You should use thenReturn or doReturn when you know the return value at the time you mock a method call. This defined value is returned when you invoke the mocked method.
thenReturn(T value) 设置调用方法时要返回的返回值.
thenReturn(T value)Sets a return value to be returned when the method is called.
@Test
public void test_return() throws Exception {
Dummy dummy = mock(Dummy.class);
int returnValue = 5;
// choose your preferred way
when(dummy.stringLength("dummy")).thenReturn(returnValue);
doReturn(returnValue).when(dummy).stringLength("dummy");
}
Answer 用于在调用模拟方法时需要执行其他操作,例如当需要根据该方法调用的参数计算返回值时.
Answer is used when you need to do additional actions when a mocked method is invoked, e.g. when you need to compute the return value based on the parameters of this method call.
当您想使用通用 Answer 存根 void 方法时,请使用 doAnswer().
Use
doAnswer()when you want to stub a void method with genericAnswer.
Answer 指定了一个执行的动作和一个在你与 mock 交互时返回的返回值.
Answer specifies an action that is executed and a return value that is returned when you interact with the mock.
@Test
public void test_answer() throws Exception {
Dummy dummy = mock(Dummy.class);
Answer<Integer> answer = new Answer<Integer>() {
public Integer answer(InvocationOnMock invocation) throws Throwable {
String string = invocation.getArgumentAt(0, String.class);
return string.length() * 2;
}
};
// choose your preferred way
when(dummy.stringLength("dummy")).thenAnswer(answer);
doAnswer(answer).when(dummy).stringLength("dummy");
}
这篇关于Mockito:doAnswer Vs thenReturn的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Mockito:doAnswer Vs thenReturn
基础教程推荐
- 大摇大摆的枚举 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- 从 python 访问 JVM 2022-01-01
