不推荐使用 MockitoJUnitRunner [英] MockitoJUnitRunner is deprecated

查看:39
本文介绍了不推荐使用 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆