In Junit 4
parameterized testing, if I have 3 tests in test class and I want to use different parameter for particular test, how should I do it?
Lets say may 3rd test checks whether a particular exception throws. So I need to pass wrong parameters only to that test.
@RunWith(Parameterized.class)
public class EvenNumberProcessorTest {
private int num1;
private int num2;
public int EvenNumberProcessorTest(int num1, int num2) {
this.num1 = num1;
this.num2 = num2;
}
@Parameterized.Parameters
public static Collection<Integer[]> numbers() {
return Arrays.asList(new Integer[][] {
{4, 2},
{5, 2}
});
}
@Test
public void testCheckDivision() {
Assert.asserEquals(true, EvenNumberProcessor.checkDivision(num1, num2));
}
@Test(expected = MyException.class)
public void testCheckDivisionFail() {
DivisionProcessor.checkDivision(3, 0);
}
}
public boolean checkDivision(int num1, num2) {
boolean result = false;
try {
if (num1 % num2 == 0) {
result = true;
} else {
result = false;
}
} catch (ArithmeticException e) {
throw new MyException("You can not use 0 to divide");
}
return result;
}
You can pass the expected output in the constructor of the test by adding another parameter. I have updated your code to reflect this below:
As you might have guessed, you can pass the expected result (true/false) to the constructor.