Junit和jenkins org.junit.contrib.java.lang.system.internal.CheckExitCalled:尝试以状态0退出

时间:2016-03-17 15:59:10

标签: java jenkins junit system-rules

我尝试并行运行junit测试。但是,虽然我的测试必须完成,但他们不能。 我的詹金斯跑了,似乎不会结束。

The error is:
org.junit.contrib.java.lang.system.internal.CheckExitCalled: Tried to exit with status 0.
    at org.junit.contrib.java.lang.system.internal.NoExitSecurityManager.checkExit(NoExitSecurityManager.java:24)
    at java.lang.Runtime.exit(Runtime.java:107)
    at java.lang.System.exit(System.java:962)
    at org.apache.maven.surefire.booter.ForkedBooter.exit(ForkedBooter.java:144)
    at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:127)
Exception in thread "main" org.junit.contrib.java.lang.system.internal.CheckExitCalled: Tried to exit with status 1.
    at org.junit.contrib.java.lang.system.internal.NoExitSecurityManager.checkExit(NoExitSecurityManager.java:24)
    at java.lang.Runtime.exit(Runtime.java:107)
    at java.lang.System.exit(System.java:962)
    at org.apache.maven.surefire.booter.ForkedBooter.exit(ForkedBooter.java:144)
    at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:135)
Exception in thread "Thread-5" Exception in thread "Thread-6" org.junit.contrib.java.lang.system.internal.CheckExitCalled: Tried to exit with status 1.
    at org.junit.contrib.java.lang.system.internal.NoExitSecurityManager.checkExit(NoExitSecurityManager.java:24)
    at java.lang.Runtime.halt(Runtime.java:273)
    at org.apache.maven.surefire.booter.ForkedBooter$1.run(ForkedBooter.java:176)
    at java.lang.Thread.run(Thread.java:744)
org.junit.contrib.java.lang.system.internal.CheckExitCalled: Tried to exit with status 0.
    at org.junit.contrib.java.lang.system.internal.NoExitSecurityManager.checkExit(NoExitSecurityManager.java:24)
    at java.lang.Runtime.halt(Runtime.java:273)
    at org.apache.maven.surefire.booter.ForkedBooter$1.run(ForkedBooter.java:176)
    at java.lang.Thread.run(Thread.java:744)

在我的班上,我有:

@Rule
public final ExpectedSystemExit expectedSystemExit = ExpectedSystemExit.none();

 if(carInsuranceSteps.isCheackReservationAddressNotFoundError()) {
            Thucydides.takeScreenshot();
            expectedSystemExit.expectSystemExitWithStatus(0);
            System.exit(0);
        }

1 个答案:

答案 0 :(得分:1)

System Rules抛出异常。它必须替换SecurityManager才能测试System.exit(),然后恢复原始的SecurityManager。这意味着您无法在同一JVM中并行运行系统规则的多个测试。