I would like to create a new unit Suit with repeatable tests for each test class in the suit, i.e. - a suit named SUIT1 with TestClass1 and TestClass2, the suite will execute TestClass1 100 times and TestClass2 50 times for example.
I have tried to do the following:
public class RepeatTests extends BaseTest {
@Test
public void testSuite() {
TestSuite suite = new TestSuite();
for (int i = 0; i < 30; i++) {
suite.addTestSuite(MyTestClass.class);
}
TestResult result = new TestResult();
suite.run(result);
}
}
Problem is that the suite.run does not run my concrete tests at all..
Any ideas how can i achieve my goal?
Ok I'm trying to do loading tests, for this I created a class with the following annotations:
In the same class I try to run {TestClasss1.class, Testtslass2.class} repeatedly to loads such as {100} = TestClasss1 .....
I find code which supposedly should do it but it does not work, here's an example: Run the entire test suite ten times
Thanks