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

查看:2869
本文介绍了不推荐使用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 is now indeed deprecated, you are supposed to use org.mockito.junit.MockitoJUnitRunner instead. As you can see only the package name has changed, the simple name of the class is still MockitoJUnitRunner.

摘录自org.mockito.runners.MockitoJUnitRunner的javadoc:

Excerpt from the javadoc of org.mockito.runners.MockitoJUnitRunner:

已移至 ,该类将被删除 Mockito 3

Moved to MockitoJUnitRunner, this class will be removed with Mockito 3

这篇关于不推荐使用MockitoJUnitRunner的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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