使用不同的数据多次运行同一JUnit测试用例

有没有办法告诉JUnit在继续下一个测试用例之前,用不同的数据连续运行一个特定的测试用例多次?

回答:

看看junit 4.4的理论:

import org.junit.Test;

import org.junit.experimental.theories.*;

import org.junit.runner.RunWith;

@RunWith(Theories.class)

public class PrimeTest {

@Theory

public void isPrime(int candidate) {

// called with candidate=1, candidate=2, etc etc

}

public static @DataPoints int[] candidates = {1, 2, 3, 4, 5};

}

以上是 使用不同的数据多次运行同一JUnit测试用例 的全部内容, 来源链接: utcz.com/qa/397236.html

回到顶部