How do you test methods that fire asynchronous processes with Junit?
I don't know how to make my test wait for the process to end (it is not exactly a unit test, it is more like an integration test as it involves several classes and not just one)
|
How do you test methods that fire asynchronous processes with Junit? I don't know how to make my test wait for the process to end (it is not exactly a unit test, it is more like an integration test as it involves several classes and not just one) |
|||
|
|
IMHO it's bad practice to have unit tests create or wait on threads, etc. You'd like these tests to run in split seconds. That's why I'd like to propose a 2-step approach to testing async processes.
|
|||||||||
|
|
An alternative is to use the CountDownLatch class.
NOTE you can't just used syncronized with a regular object as a lock, as fast callbacks can release the lock before the lock's wait method is called. See this blog post by Joe Walnes. EDIT Removed syncronized blocks around CountDownLatch thanks to comments from @jtahlborn and @Ring |
|||||||
|
|
You can try using the Awaitility framework. It makes it easy to test the systems you're talking about. |
|||
|
|
|
How about calling |
||||
|
|