I\'d like to know if there are some unit testing frameworks which are capable of writing multi-threaded tests easily?
I would imagine something like: invoke a special te
Just using the concurrency libraries would simplify your code. You can turn your boiler plate code into one method.
Something like
public static void runAll(int times, Runnable... tests) { }