我正在尝试使用 @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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
如何检测 32 位 int 上的整数溢出?How can I detect integer overflow on 32 bits int?(如何检测 32 位 int 上的整数溢出?)
return 语句之前的局部变量,这有关系吗?Local variables before return statements, does it matter?(return 语句之前的局部变量,这有关系吗?)
如何将整数转换为整数?How to convert Integer to int?(如何将整数转换为整数?)
如何在给定范围内创建一个随机打乱数字的 intHow do I create an int array with randomly shuffled numbers in a given range(如何在给定范围内创建一个随机打乱数字的 int 数组)
java的行为不一致==Inconsistent behavior on java#39;s ==(java的行为不一致==)
为什么 Java 能够将 0xff000000 存储为 int?Why is Java able to store 0xff000000 as an int?(为什么 Java 能够将 0xff000000 存储为 int?)