Uses of Class
org.junit.platform.testkit.engine.Execution
-
Packages that use Execution Package Description org.junit.platform.testkit.engine Test Kit for testing the execution of aTestEngine
running on the JUnit Platform. -
-
Uses of Execution in org.junit.platform.testkit.engine
Fields in org.junit.platform.testkit.engine with type parameters of type Execution Modifier and Type Field Description private java.util.List<Execution>
Executions. executions
Methods in org.junit.platform.testkit.engine that return Execution Modifier and Type Method Description static Execution
Execution. finished(TestDescriptor testDescriptor, java.time.Instant startInstant, java.time.Instant endInstant, TestExecutionResult executionResult)
Create a new instance of anExecution
that finished with the providedTestExecutionResult
.static Execution
Execution. skipped(TestDescriptor testDescriptor, java.time.Instant startInstant, java.time.Instant endInstant, java.lang.String skipReason)
Create a new instance of anExecution
that was skipped with the providedskipReason
.Methods in org.junit.platform.testkit.engine that return types with arguments of type Execution Modifier and Type Method Description org.assertj.core.api.ListAssert<Execution>
Executions. assertThatExecutions()
Shortcut fororg.assertj.core.api.Assertions.assertThat(executions.list())
.private static java.util.List<Execution>
Executions. createExecutions(java.util.List<Event> events)
Create executions from the supplied list of events.private java.util.stream.Stream<Execution>
Executions. executionsByTerminationInfo(java.util.function.Predicate<TerminationInfo> predicate)
java.util.stream.Stream<Execution>
Executions. filter(java.util.function.Predicate<? super Execution> predicate)
Shortcut forexecutions.stream().filter(predicate)
.private java.util.stream.Stream<Execution>
Executions. finishedExecutions()
private java.util.stream.Stream<Execution>
Executions. finishedExecutionsByStatus(TestExecutionResult.Status status)
java.util.List<Execution>
Executions. list()
Get the executions as aList
.java.util.stream.Stream<Execution>
Executions. stream()
Get the executions as aStream
.Method parameters in org.junit.platform.testkit.engine with type arguments of type Execution Modifier and Type Method Description java.util.stream.Stream<Execution>
Executions. filter(java.util.function.Predicate<? super Execution> predicate)
Shortcut forexecutions.stream().filter(predicate)
.<R> java.util.stream.Stream<R>
Executions. map(java.util.function.Function<? super Execution,? extends R> mapper)
Shortcut forexecutions.stream().map(mapper)
.Constructor parameters in org.junit.platform.testkit.engine with type arguments of type Execution Constructor Description Executions(java.util.stream.Stream<Execution> executions, java.lang.String category)
-