There's an Intermittent annotation in the tempus-fugit library which works with JUnit 4.7's @Rule
to repeat a test several times or with @RunWith
.
For example,
@RunWith(IntermittentTestRunner.class)
public class IntermittentTestRunnerTest {
private static int testCounter = 0;
@Test
@Intermittent(repition = 99)
public void annotatedTest() {
testCounter++;
}
}
After the test is run (with the IntermittentTestRunner in the @RunWith
), testCounter
would be equal to 99.