Re: Is it possible to have write NonBlocking Junit tests
<[email protected]> 13 Apr 2014 10:42:01 -0700
| Newsgroups | gmane.comp.java.junit.user |
|---|---|
| Message-ID | <[email protected]> |
:) I am looking for a non blocking tests .. in simple words if a tests needs to wait for the getting a result it can execute a different set tests rather than being blocked.The verification part can be done once it gets a notification that the result. Something similar to what is being done in Actors or NodeJS.One way is increase the number of threads and execute tests in parallel but we know there is always a limit in that.I just wanted to find out it a solution like this already exists.I don't think it does