Mockito - 无法实例化@InjectMocks

时间:2015-01-22 09:10:46

标签: java junit mocking

我正在测试我的类中有两个私有字段,这两个字段在构造函数中初始化。

现在,当我尝试使用@InjectMocks注释的类调用时,它会抛出异常:

 Cannot instantiate @InjectMocks field named 'ServiceImpl' of type 'class com.test.ServiceImpl'. You haven't provided the instance at field declaration so I tried to construct the instance.

下面是一段代码。

public class ServiceImpl implements Service {

private OfficeDAO officeDAO ;

private DBDAO dbDAO ;

public ServiceImpl() {
officeDAO = Client.getDaoFactory().getOfficeDAO();
dbDAO = Client.getDaoFactory().getDBDAO();
}

我的测试班:

@RunWith(MockitoJUnitRunner.class)
public class ServiceImplTest {

    @Mock
    private OfficeDAO officeDAO;

    @Mock
    private DBDAO dbDAO;

    @Mock
    Client client;

    @InjectMocks
    private ServiceImpl serviceImpl;

    @Mock
    private Logger log;

    @Before
    public void setUp() throws Exception {
        MockitoAnnotations.initMocks(this);
    }

请帮我解决问题。 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:3)

您正在使用@InjectMocks注释,该注释会创建ServiceImpl类的实例。因为你的构造函数试图从工厂获得实现:Client.getDaoFactory().getOfficeDAO()你有NPE。

确保Client.getDaoFactory()返回的内容。我敢打赌它会返回null,这就是问题:)重构你的代码,以便通过参数传递DaoFactory而不是使用静态。


我发现你现在有一个不同的例外。但基于代码,我无法真正说出更多。请提供失败测试的完整示例。