i'am trying to achieve, that my testsuite will be executed multiple times. JUnit 4.10 demonstrate it easiely:
I have two testclasses into my suite:
@RunWith(Suite.class)
@SuiteClasses({ TestClassA.class, TestClassB.class })
public class MyTestSuite {
}
But i dont know, how can i determine, that the standard-runner "Suite.class" execute my MyTestSuite multiple times?