Uses of Class
org.junit.platform.engine.TestExecutionResult.Status
-
Packages that use TestExecutionResult.Status Package Description org.junit.platform.engine Public API for test engines.org.junit.platform.testkit.engine Test Kit for testing the execution of aTestEnginerunning on the JUnit Platform. -
-
Uses of TestExecutionResult.Status in org.junit.platform.engine
Fields in org.junit.platform.engine declared as TestExecutionResult.Status Modifier and Type Field Description private TestExecutionResult.StatusTestExecutionResult. statusMethods in org.junit.platform.engine that return TestExecutionResult.Status Modifier and Type Method Description TestExecutionResult.StatusTestExecutionResult. getStatus()Get the status of this result.static TestExecutionResult.StatusTestExecutionResult.Status. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TestExecutionResult.Status[]TestExecutionResult.Status. values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.junit.platform.engine with parameters of type TestExecutionResult.Status Constructor Description TestExecutionResult(TestExecutionResult.Status status, java.lang.Throwable throwable) -
Uses of TestExecutionResult.Status in org.junit.platform.testkit.engine
Methods in org.junit.platform.testkit.engine with parameters of type TestExecutionResult.Status Modifier and Type Method Description private java.util.stream.Stream<Event>Events. finishedEventsByStatus(TestExecutionResult.Status status)private java.util.stream.Stream<Execution>Executions. finishedExecutionsByStatus(TestExecutionResult.Status status)private static org.assertj.core.api.Condition<Event>EventConditions. finishedWithCause(TestExecutionResult.Status expectedStatus, org.assertj.core.api.Condition<java.lang.Throwable>... conditions)static org.assertj.core.api.Condition<TestExecutionResult>TestExecutionResultConditions. status(TestExecutionResult.Status expectedStatus)Create a newConditionthat matches if and only if aTestExecutionResult's status is equal to the suppliedStatus.
-