MockitoJUnitRunner is deprecated(不推荐使用 MockitoJUnitRunner)
问题描述
我正在尝试使用 @InjectMocks
和 @Mock
进行单元测试.
I'm trying to make a unit test with @InjectMocks
and @Mock
.
@RunWith(MockitoJUnitRunner.class)
public class ProblemDefinitionTest {
@InjectMocks
ProblemDefinition problemDefinition;
@Mock
Matrix matrixMock;
@Test
public void sanityCheck() {
Assert.assertNotNull(problemDefinition);
Assert.assertNotNull(matrixMock);
}
}
当我不包含 @RunWith
注释时,测试会失败.但是
When I don't include the @RunWith
annotation, the test fails. But
类型 MockitoJUnitRunner 已弃用
The type MockitoJUnitRunner is deprecated
我使用的是 Mockito 2.6.9.我该怎么办?
I'm using Mockito 2.6.9. How should I go about this?
推荐答案
org.mockito.runners.MockitoJUnitRunner
现在确实被弃用了,你应该使用 org.mockito.junit.MockitoJUnitRunner
.如您所见,只有包名发生了变化,类的简单名称仍然是 MockitoJUnitRunner
.
摘自org.mockito.runners.MockitoJUnitRunner
的javadoc:
Excerpt from the javadoc of org.mockito.runners.MockitoJUnitRunner
:
移至 MockitoJUnitRunner
,这个类将被删除Mockito 3
Moved to
MockitoJUnitRunner
, this class will be removed with Mockito 3
这篇关于不推荐使用 MockitoJUnitRunner的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:不推荐使用 MockitoJUnitRunner


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