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
基础教程推荐
- doFilter()是在servlet的工作完成之前还是之后执行的? 2022-01-01
- Maven:无效的目标版本:10 2022-01-01
- 控制台应用程序中的 Java 键盘输入解析 2022-01-01
- JPA惰性列表上的流 2022-01-01
- 在springboot中如何给mybatis加拦截器 2023-04-29
- 将 double 转换为 Int,向下舍入 2022-01-01
- 将 Windows 证书导入 Java 2022-01-01
- 在java中使用xpath和selenium解析HTML表格数据 2022-01-01
- Java ECDSAwithSHA256 签名长度不一致 2022-01-01
- 如何在相机中应用自定义滤镜 [Surfaceview 预览]. 2022-01-01
