Class ShutdownResult
- java.lang.Object
-
- org.apache.maven.surefire.junitcore.pc.ShutdownResult
-
public final class ShutdownResult extends java.lang.Object
Populates collectiontriggeredTests
of descriptions started before shutting down. Populates collectionincompleteTests
which describes started tests but unfinished due to abrupt shutdown. The collectiontriggeredTests
contains all elements fromincompleteTests
.- Since:
- 2.18
- See Also:
Scheduler
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Collection<org.junit.runner.Description>
incompleteTests
private java.util.Collection<org.junit.runner.Description>
triggeredTests
-
Constructor Summary
Constructors Constructor Description ShutdownResult(java.util.Collection<org.junit.runner.Description> triggeredTests, java.util.Collection<org.junit.runner.Description> incompleteTests)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<org.junit.runner.Description>
getIncompleteTests()
java.util.Collection<org.junit.runner.Description>
getTriggeredTests()
-