我正在使用Mockito进行单元测试。我想知道是否可以像在Junit测试中一样发送参数化输入参数 e.g
@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
}
答案 0 :(得分:18)
在JUnit中,Parameterized tests使用a special runner来确保多次实例化测试,因此每次测试方法都被多次调用。 Mockito是用于编写特定单元测试的工具,因此没有内置功能可以多次运行相同的测试,具有不同的Mockito预期。
如果您希望更改测试条件,最好的办法是执行以下操作之一:
@Test
方法。请注意,禁止将模拟对象用作@Parameterized
测试参数。如果您希望基于模拟进行参数化,您可以这样做,可能会创建模拟并在测试中以静态方法设置期望。
关于参赛者的注意事项:此Parameterized test runner与Mockito的MockitoJUnitRunner发生冲突:每个测试类只能有一名参赛者。如果您同时使用它们,则需要切换到@Before and @After methods或a Mockito JUnit4 rule进行设置。
例如,从a different answer压缩,解释了有关参数化运行器与JUnit规则的更多信息,并从JUnit4 Parameterized Test doc页面和MockitoRule doc页面解除了:
@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 */ }
}
答案 1 :(得分:5)
如果您遇到MockitoRule
不可用的较旧版本的mockito,另一种可能性是使用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 */ }
}
答案 2 :(得分:4)
您可以使用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},
});
}
}