0

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);
        }
4

1 に答える 1

1

例外はSystem Rulesによってスローされます。テストのために SecurityManager を置き換える必要がありSystem.exit()、その後元の SecurityManager を復元します。つまり、システム ルールを使用して複数のテストを同じ JVM で並行して実行することはできません。

于 2016-03-17T21:46:54.727 に答える