gpt4 book ai didi

java - 如果 JUnit 测试因超时而失败,它会运行 finally 子句吗?

转载 作者:行者123 更新时间:2023-12-01 16:56:07 25 4
gpt4 key购买 nike

假设我们有一个带有超时的 junit 测试,如下所示:

@Test(timeout=10)
public void testWithTimeout(){
try{
doSomethingLongerThan10();
} finally {
cleanup();
}
}

如果测试花费更长的时间并以超时结束,它会运行finally子句吗?就这样结束吗?它会让线程继续运行吗?

我在自己的测试中观察到,finally 子句没有运行,但我不知道在每个可能的 jUnit 测试中是否都是这样,或者它取决于版本或运行程序类。

最佳答案

编辑:感谢 Sotirios Delimanolis 指出“糟糕的测试”

<小时/>

因为我很好奇,所以我测试了它:

public class Foo {
@Test(timeout=10)
public void testWithTimeout() {
try {
while(true)
;
} finally {
System.out.println("did run");
}
}
}

输出:

org.junit.runners.model.TestTimedOutException: test timed out after 10 milliseconds
at so32723397.Foo.testWithTimeout(Foo.java:33)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:298)
at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:292)
at java.util.concurrent.FutureTask.run(FutureTask.java:262)
at java.lang.Thread.run(Thread.java:745)

所以答案是否定的。(junit 4.12)

关于java - 如果 JUnit 测试因超时而失败,它会运行 finally 子句吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32723397/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com