9
我想知道是否可以在定義參數化測試時以編程方式並行運行JUnit測試。這個想法將能夠像Eclipse中的常規JUnit測試一樣運行它們。在Eclipse中並行運行JUnit參數化測試
我當前的代碼是類似於:
@RunWith(Parameterized.class)
public class JUnitDivideClassTests {
@Parameters
public static Collection<Object[]> data() {
return Arrays.asList(new Object[][] { { 12, 3, 4 }, { 12, 2, 6}, { 12, 4, 3 }});
}
private int n;
private int d;
private int q;
public JUnitDivideClassTests(int n, int d, int q) {
this.n = n;
this.d = d;
this.q = q;
}
@Test
public void test() {
Assert.assertEquals(q, n/d);
}
}
如發現@http://codemadesimple.wordpress.com/2012/01/17/paramtest_with_junit/
它的工作原理,謝謝 –