Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a large JUnit test suite, where I'd quite like to run all the tests concurrently for two reasons:

  • Exploit multiple cores to run the whole test suite faster
  • Hopefully detect some errors due to non-thread-safe global objects

I recognise that this will force me to refactor some code to make it thread-safe, but I consider that to be a good thing :-)

What's the best way to get JUnit to run all the tests concurrently?

share|improve this question

3 Answers

Are you fixed to JUnit? TestNG provides good multi thread testing out of the box and it's compatible with JUnit tests (you need to make a few changes). For example you could run a test like this:

@Test(threadPoolSize = 3, invocationCount = 9,  timeOut = 10000)
public void doSomething() {
...
}

This would mean that the doSomething() method will be invoked 9 times by 3 different threads.

I highly recommend TestNG.

share|improve this answer
+1 for TestNG, I use it for all my thread safety tests. It also has nice paramaterized tests. – Toby Hobson Apr 24 '12 at 13:19
4  
Downvoted due to not actually answering the OPs question. He specifically states he wants to run his entire suite across threads and run a single method multiple times – MrWiggles Oct 13 '12 at 20:24

I was looking for an answer to exactly this question, and based on the answers here, and what I read elsewhere, it appears as if there isn't currently an easy out-of-the-box way to run existing tests in parallel using JUnit. Or if there is I didn't find it. So I wrote a simple JUnit Runner that accomplishes that. Please feel free to use it; see http://falutin.net/2012/12/30/multithreaded-testing-with-junit/ for a complete explanation and the source code of the MultiThreadedRunner class. With this class, you can just annotate your existing test class(es) like this:

@RunWith(MultiThreadedRunner.class)
share|improve this answer
Have you an idea on how to implement a concurrent Suite runner, and not only a concurrent test runner ? Could be helpful too :p – Stéphane Piette Feb 28 at 12:35
I haven't looked at that, Stéphane. But making the test runner was so easy, I bet the suite runner wouldn't be hard either. If you solve the problem, I'll gladly add your code to my post :) – Mike Sokolov Feb 28 at 16:11

http://groboutils.sourceforge.net/ provides some way to write multithreaded tests.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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