vote up 6 vote down star

I'm using junit 4.4 and maven and I have a large number of long-running integration tests.

When it comes to parallellizing test suites there are a few solutions that allow me to run each test method in a single test-class in parallel. But all of these require that I change the tests in one way or another.

I really think it would be a much cleaner solution to run X different test classes in X threads in parallel. I have hundreds of tests so I don't really care about threading individual test-classes.

Is there any way to do this ?

flag

68% accept rate
Thanks for the information, looking forward to getting support for this in surefire, will help no end in larger projects. – Paul Whelan Jul 30 at 11:50

4 Answers

vote up 0 vote down

TestNG can do that (this was my first reflex - then I saw you're already having a lot of testcases).

For JUnit, look at parallel-junit.

link|flag
Unfortunately this is not the answer to the question I am asking. parallel-junit only runs within a single test class. TestNG also only runs within a single class, and my tests are not TestNG tests. – krosenvold Jan 8 at 11:42
vote up 0 vote down

You can change your test to be TestNg test in a minute (you just need to change imports), TestNG is the best in parallel testing.

link|flag
vote up 1 vote down

You could try Gridgain that lets you run distribute your tests across a compute grid.

link|flag
vote up 2 vote down check

From junit 4.7 it's now possible to run tests in parallel without using TestNG. Actually it has been possible since 4.6, but there are a number of fixes being made in 4.7 that will make it a viable option. You may also run parallel tests with spring, which you can read about here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.