在学习 Mockito 时,我在以下参考资料中找到了两个不同的批注 @TestSubject @InjectMocks
@TestSubject Ref @InjectMocks Ref
如教程中所述,@InjectMocks批注绝对可以正常工作,但@TestSubject不能正常工作,而是显示错误。
我在下面的代码片段中出现TestSubject cannot be resolved to a type注释的@TestSubject错误,但是我已经进行了正确的设置(在构建路径中包括 Junit Mockito jar文件)。

import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.Mockito;
import org.mockito.runners.MockitoJUnitRunner;

import com.infosys.junitinteg.action.MathApplication;
import com.infosys.junitinteg.service.CalculatorService;

@RunWith(MockitoJUnitRunner.class)
public class MathApplicationTester {

    // @TestSubject annotation is used to identify class which is going to use
    // the mock object
    @TestSubject
    MathApplication mathApplication = new MathApplication();

    // @Mock annotation is used to create the mock object to be injected
    @Mock
    CalculatorService calcService;

    @Test(expected = RuntimeException.class)
    public void testAdd() {
        // add the behavior to throw exception
        Mockito.doThrow(new RuntimeException("Add operation not implemented")).when(calcService).add(10.0, 20.0);

        // test the add functionality
        Assert.assertEquals(mathApplication.add(10.0, 20.0), 30.0, 0);
    }
}

我在这里有两个问题。
1.有人遇到过类似的问题吗?如果是,那么根本原因和解决方案是什么?
2.如果一切正常,那么@TestSubject@InjectMocks批注之间有什么区别?

最佳答案

@TestSubject是EasyMock的注释,它与Mockito的@InjectMocks一样。如果您使用的是Mockito,则必须使用@InjectMocks

09-26 05:12