Package org.junit.platform.engine
Class TestExecutionResult
- java.lang.Object
-
- org.junit.platform.engine.TestExecutionResult
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TestExecutionResult.Status
Status of executing a single test or container.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TestExecutionResult
aborted(Throwable throwable)
Obtain aTestExecutionResult
for an aborted execution of a test or container with the suppliedthrowable
.static TestExecutionResult
failed(Throwable throwable)
Obtain aTestExecutionResult
for a failed execution of a test or container with the suppliedthrowable
.TestExecutionResult.Status
getStatus()
Get the status of this result.Optional<Throwable>
getThrowable()
Get the throwable that caused this result, if available.static TestExecutionResult
successful()
Obtain aTestExecutionResult
for a successful execution of a test or container.String
toString()
-
-
-
Method Detail
-
successful
public static TestExecutionResult successful()
Obtain aTestExecutionResult
for a successful execution of a test or container.
-
aborted
public static TestExecutionResult aborted(Throwable throwable)
Obtain aTestExecutionResult
for an aborted execution of a test or container with the suppliedthrowable
.- Parameters:
throwable
- the throwable that caused the aborted execution; may be null
-
failed
public static TestExecutionResult failed(Throwable throwable)
Obtain aTestExecutionResult
for a failed execution of a test or container with the suppliedthrowable
.- Parameters:
throwable
- the throwable that caused the failed execution; may be null
-
getStatus
public TestExecutionResult.Status getStatus()
Get the status of this result.
-
getThrowable
public Optional<Throwable> getThrowable()
Get the throwable that caused this result, if available.
-
-