我previously asked如何使线程池中的单元测试失败。
@Test
public void foo() throws Exception {
ScheduledThreadPoolExecutor stpe = new ScheduledThreadPoolExecutor(1);
stpe.submit(new Runnable() {
@Override
public void run() {
// does not make this unit test fail :(
Assert.AssertEquals(1, 2);
}
});
}
我接受的解决方案是阻止返回的
Future
并获取。但是在我的实际设置中,我既不拥有线程池也不拥有Submit调用-这是一个最终源自MINA的回调。关于最好的主意,我正在弄乱全局默认异常处理程序,但看起来很笨拙。
Maven surefire如果重要的话。
最佳答案
我遇到相同的问题,而我的问题在这里:TestNG Make assert in multithread way (not run in multithread)
这是我的解决方案:
由于java通过引用传递方法的参数,所以我写了一个ResultWrapper类
public class ResultWrapper {
boolean result;
public boolean getResult()
{
return result;
}
public void setResult(boolean result)
{
this.result = result;
}
}
而不是在
public void run()
中进行任何声明,我将结果放入ResultWrapper:resultWrapper.setResult(actual == expectedAssert);
(将ResultWrapper传递给在Constructor中调用Runnable类的类)
我在这样的测试方法中使assert outSide:
@测试
public void assign_assign_release_release() throws ClientProtocolException, IOException, InterruptedException{
assignUntilSuccess();
releaseUntilSuccessAndExpect(1);
Assert.assertTrue(resultWrapper.getResult());
}
希望这会有所帮助。