29

我正在使用 Mockito 进行单元测试。我想知道是否可以像在 Junit 测试中一样发送参数化输入参数,
例如

@InjectMocks
MockClass mockClass = new MockClass();

@Test
public void mockTestMethod()
    {
    mockClass.testMethod(stringInput); 
// here I want to pass a list of String inputs 
// this is possible in Junit through Parameterized.class.. 
// wondering if its can be done in Mockito
    } 
4

3 回答 3

30

在 JUnit 中,参数化测试使用一个特殊的运行器来确保测试被多次实例化,因此每个测试方法都会被多次调用。Mockito 是一种用于编写特定单元测试的工具,因此没有内置的能力可以以不同的 Mockito 期望多次运行相同的测试。

如果您希望更改测试条件,最好的办法是执行以下操作之一:

  • 使用 JUnit 参数化您的测试,并为您想要的模拟输入提供一个参数;
  • 在测试中运行不同参数的循环,不幸的是,这避免了“每个方法测试一件事”的理念
  • 提取一个实际执行测试的方法,并@Test为您想要的每个模拟创建一个新方法。

请注意,没有禁止使用模拟对象作为@Parameterized测试参数。如果您希望基于模拟进行参数化,您可以这样做,可能会创建模拟并在测试的静态方法中设置期望。


关于跑步者的注意事项:此参数化测试跑步者与 Mockito 的MockitoJUnitRunner冲突:每个测试类只能有一个跑步者。如果您同时使用它们,您将需要切换到@Before 和 @After 方法Mockito JUnit4 规则来进行设置。

例如,从一个不同的答案压缩而来,该答案解释了更多关于参数化运行器与 JUnit 规则的信息,并从JUnit4 Parameterized Test doc page 和MockitoRule doc page 提升:

@RunWith(Parameterized.class)
public class YourComponentTest {
    @Rule public MockitoRule rule = MockitoJUnit.rule();
    @Mock YourDep mockYourDep;

    @Parameters public static Collection<Object[]> data() { /* Return the values */ }

    public YourComponentTest(Parameter parameter) { /* Save the parameter to a field */ }

    @Test public void test() { /* Use the field value in assertions */ }
}
于 2012-09-26T16:41:42.100 回答
12

如果您遇到不可用的较旧版本的 mockito MockitoRule,另一种可能性是使用以下命令显式初始化 mock MockitoAnnotations.initMocks

@RunWith(Parameterized.class)
public class YourComponentTest {        
    @Mock YourDep mockYourDep;

    @Parameter
    public Parameter parameter;

    @Parameters public static Collection<Object[]> data() { /* Return the values */ }

    @Before
    public void init() {
        MockitoAnnotations.initMocks(this);
    }

    @Test public void test() { /* Use the field value in assertions */ }
}
于 2017-01-09T14:30:02.300 回答
7

您可以使用 JUnitParamsRunner。这是我的做法:

import junitparams.JUnitParamsRunner;
import junitparams.Parameters;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mock;

import java.util.Arrays;

import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.mockito.Mockito.when;
import static org.mockito.MockitoAnnotations.initMocks;

@RunWith(value = JUnitParamsRunner.class)
public class ParameterizedMockitoTest {

    @InjectMocks
    private SomeService someService;
    @Mock
    private SomeOtherService someOtherService;

    @Before
    public void setup() {
        initMocks(this);
    }

    @Test
    @Parameters(method = "getParameters")
    public void testWithParameters(Boolean parameter, Boolean expected) throws Exception {
        when(someOtherService.getSomething()).thenReturn(new Something());
        Boolean testObject = someService.getTestObject(parameter);
        assertThat(testObject, is(expected));
    }

    @Test
    public void testSomeBasicStuffWithoutParameters() {
        int i = 0;
        assertThat(i, is(0));
    }

    public Iterable getParameters() {
        return Arrays.asList(new Object[][]{
                {Boolean.TRUE, Boolean.TRUE},
                {Boolean.FALSE, Boolean.FALSE},
        });
    }
}
于 2017-07-20T05:29:33.390 回答