use of junit.extensions.RepeatedTest in project junit4 by junit-team.
the class RepeatedTestTest method testRepeatedOnce.
public void testRepeatedOnce() {
Test test = new RepeatedTest(fSuite, 1);
assertEquals(2, test.countTestCases());
TestResult result = new TestResult();
test.run(result);
assertEquals(2, result.runCount());
}
Aggregations