Can Mockito stub a method without regard to the argument?(Mockito 可以在不考虑参数的情况下存根方法吗?)
问题描述
我正在尝试使用 Mockito 测试一些遗留代码.
I'm trying to test some legacy code, using Mockito.
我想存根一个在生产中使用的 FooDao
,如下所示:
I want to stub a FooDao
that is used in production as follows:
foo = fooDao.getBar(new Bazoo());
我会写:
when(fooDao.getBar(new Bazoo())).thenReturn(myFoo);
但明显的问题是 getBar()
永远不会使用我为方法存根的相同 Bazoo
对象调用.(诅咒那个 new
运算符!)
But the obvious problem is that getBar()
is never called with the same Bazoo
object that I stubbed the method for. (Curse that new
operator!)
如果我能以一种不管参数如何都返回 myFoo
的方式对方法进行存根,我会很高兴的.如果做不到这一点,我会听取其他解决方法的建议,但我真的很想避免更改生产代码,直到有合理的测试覆盖率.
I would love it if I could stub the method in a way that it returns myFoo
regardless of the argument. Failing that, I'll listen to other workaround suggestions, but I'd really like to avoid changing the production code until there is reasonable test coverage.
推荐答案
when(
fooDao.getBar(
any(Bazoo.class)
)
).thenReturn(myFoo);
或(避免null
s):
when(
fooDao.getBar(
(Bazoo)notNull()
)
).thenReturn(myFoo);
别忘了导入匹配器(还有很多其他的可用):
Don't forget to import matchers (many others are available):
对于 Mockito 2.1.0 及更新版本:
For Mockito 2.1.0 and newer:
import static org.mockito.ArgumentMatchers.*;
对于旧版本:
import static org.mockito.Matchers.*;
这篇关于Mockito 可以在不考虑参数的情况下存根方法吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Mockito 可以在不考虑参数的情况下存根方法吗?


- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01