File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
junit-platform-launcher/src/main/java/org/junit/platform/launcher Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 13
13
import static org .apiguardian .api .API .Status .STABLE ;
14
14
15
15
import org .apiguardian .api .API ;
16
+ import org .junit .platform .commons .util .UnrecoverableExceptions ;
16
17
import org .junit .platform .engine .TestExecutionResult ;
17
18
import org .junit .platform .engine .TestExecutionResult .Status ;
18
19
import org .junit .platform .engine .reporting .ReportEntry ;
30
31
* events are called in reverse order. Test case execution won't start before
31
32
* all {@link #executionStarted(TestIdentifier)} calls have returned.
32
33
*
34
+ * <p>If an exception is thrown by an implementation of a method of this
35
+ * interface, the exception will be caught and logged unless it is deemed
36
+ * {@linkplain UnrecoverableExceptions unrecoverable}. In consequence, a
37
+ * {@code TestExecutionListener} cannot cause test execution to fail or abort it
38
+ * early by throwing an exception.
39
+ *
33
40
* <p>JUnit provides two example implementations.
34
41
*
35
42
* <ul>
You can’t perform that action at this time.
0 commit comments