如何在JUnit中使用参数化测试来测试以下方法
public class Math {
public static int add(int a, int b) {
return a + b;
}
}
我想知道如何使用Junit进行参数化测试以测试此方法,当我想用10个不同的args进行测试时。
答案 0 :(得分:5)
测试类必须有注释@RunWith(Parameterized.class)
,返回Collection<Object[]>
的函数应标有@Parameters
,构造函数接受输入和预期输出
API:http://junit.sourceforge.net/javadoc/org/junit/runners/Parameterized.html
@RunWith(Parameterized.class)
public class AddTest {
@Parameters
public static Collection<Object[]> data() {
return Arrays.asList(new Object[][] {
{ { 0, 0, 0 }, { 1, 1 ,2},
{ 2, 1, 3 }, { 3, 2, 5 },
{ 4, 3, 7 }, { 5, 5, 10 },
{ 6, 8, 14 } } });
}
private int input1;
private int input2;
private int sum;
public AddTest(int input1, int input2, int sum) {
this.input1= input1;
this.input2= input2;
this.sum = sum;
}
@Test
public void test() {
assertEquals(sum, Math.Add(input1,input2));
}
}
答案 1 :(得分:0)
最近我开始了zohhak项目。我相信它比@Parametrized更清洁:
@TestWith({
"25 USD, 7",
"38 GBP, 2",
"null, 0"
})
public void testMethod(Money money, int anotherParameter) {
...
}