I want to test my JUnit test cases from multiple threads to check how my functionality works in multi-threaded env. TestNG has a nice way to do it @Test(invocationCount = 100, threadPoolSize = 10)
. How can I do similar in JUnit.
Thanks, NN
I want to test my JUnit test cases from multiple threads to check how my functionality works in multi-threaded env. TestNG has a nice way to do it @Test(invocationCount = 100, threadPoolSize = 10)
. How can I do similar in JUnit.
Thanks, NN