如果您使用的是 JUnit4,则可以查看@Parameterized。基本思想是您提供一个待办事项列表,JUnit 对列表中的每个项目执行相同的测试方法。
使用 4.10 版本,命名不是太好,您可以得到 0、1、2... 作为名称,但是使用 4.11-beta-1(应该很快会从 beta 版本中出来),您可以获得更好的命名方案,因为您可以指定名称。请参阅@Parameterized顶部的 javadoc 。
@RunWith(Parameterized.class)
public class FibonacciTest {
@Parameters(name= "{index}: fib({0})={1}") // we specify the name here
public static Iterable<Object[]> data() {
return Arrays.asList(new Object[][] { { 0, 0 }, { 1, 1 }, { 2, 1 },
{ 3, 2 }, { 4, 3 }, { 5, 5 }, { 6, 8 } });
}
private int fInput;
private int fExpected;
public FibonacciTest(int input, int expected) {
fInput= input;
fExpected= expected;
}
@Test
public void test() {
assertEquals(fExpected, Fibonacci.compute(fInput));
}
}
在上面,您最终会得到诸如
fib(0)=0
fib(1)=1
fib(2)=1
等等