1

如何在 JUnit 中使用参数化测试来测试以下方法

public class Math {
    public static int add(int a, int b) {  
        return a + b;
    }
}

当我想用 10 个不同的 args 测试它时,我想知道如何使用 Junit 进行参数化测试来测试这个方法。

4

2 回答 2

5

测试类必须有一个注释@RunWith(Parameterized.class)和返回 a 的函数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));
        }
 }
于 2011-04-30T05:10:29.227 回答
0

最近我开始了zohhak项目。我相信它比@Parametrized 干净得多:

@TestWith({
   "25 USD, 7",
   "38 GBP, 2",
   "null, 0"
})
public void testMethod(Money money, int anotherParameter) {
   ...
}
于 2012-12-05T15:53:29.607 回答