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
Methods in org.junit.platform.testkit.engine that return Execution Modifier and Type Method Description static Execution
Execution. finished(TestDescriptor testDescriptor, Instant startInstant, Instant endInstant, TestExecutionResult executionResult)
Create a new instance of anExecution
that finished with the providedTestExecutionResult
.static Execution
Execution. skipped(TestDescriptor testDescriptor, Instant startInstant, Instant endInstant, 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 ListAssert<Execution>
Executions. assertThatExecutions()
Shortcut fororg.assertj.core.api.Assertions.assertThat(executions.list())
.Stream<Execution>
Executions. filter(Predicate<? super Execution> predicate)
Shortcut forexecutions.stream().filter(predicate)
.List<Execution>
Executions. list()
Get the executions as aList
.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 Stream<Execution>
Executions. filter(Predicate<? super Execution> predicate)
Shortcut forexecutions.stream().filter(predicate)
.<R> Stream<R>
Executions. map(Function<? super Execution,? extends R> mapper)
Shortcut forexecutions.stream().map(mapper)
.
-