标签: java junit
我想从多个线程测试我的JUnit测试用例,以检查我的功能在多线程环境中的工作方式。 TestNG有一个很好的方法@Test(invocationCount = 100, threadPoolSize = 10)。我怎样才能在JUnit中做类似的事。
@Test(invocationCount = 100, threadPoolSize = 10)
谢谢, NN