IncompleteExecutionException

actual typealias IncompleteExecutionException = org.opentest4j.IncompleteExecutionException

RuntimeException used to indicate that the execution of a test was incomplete — for example, that the execution was entirely skipped or aborted mid-stream. See subclasses for concrete use cases.

An IncompleteExecutionException is not used to indicate that a test execution failed.

Author

Johannes Link

Sam Brannen

Since

1.0

Author

Johannes Link

Sam Brannen

Inheritors

Constructors

Link copied to clipboard
expect constructor()
actual constructor()

Constructs an IncompleteExecutionException with an empty message and no cause.

expect constructor(message: String?)
actual constructor(message: String?)

Constructs an IncompleteExecutionException with a message but without cause.

expect constructor(message: String?, cause: Throwable?)
actual constructor(message: String?, cause: Throwable?)

Constructs an IncompleteExecutionException with a message and a cause.

Properties

Link copied to clipboard
open val cause: Throwable?
open val cause: Throwable?
Link copied to clipboard
open val message: String?
open val message: String?