Junit4 + Spring - creating a repeatable suit

181 Views Asked by At

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?

1

There are 1 best solutions below

1
On

Ok I'm trying to do loading tests, for this I created a class with the following annotations:

@ RunWith (Suite.class)
@ SuiteClasses ({TestClasss1.class, Testtslass2.class, .........})

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

public static Test suite () {
     return new RepeatedTest (new TestSuite (TestClasss1.class), 10);
}

Thanks