Re: Is it possible to have write NonBlocking Junit tests

David Saff <[email protected]> Tue, 15 Apr 2014 20:58:51 -0400
Newsgroups gmane.comp.java.junit.user
Message-ID <CALrw-PyPZWqjkMBNC56c+igtQJcUjOYwJdhnf6yiRuwyRi0W2A@mail.gmail.com>
Have you searched Google for "junit parallel"?  It seems like some of the
solutions linked there might achieve your primary goal (fast total suite
execution when individual tests are long-running)


On Sun, Apr 13, 2014 at 1:42 PM, <[email protected]> wrote:

>
>
> :) 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
>  
>