TestAbortedException

actual typealias TestAbortedException = org.opentest4j.TestAbortedException

Specialization of IncompleteExecutionException used to indicate that a test was aborted during execution (e.g., due to a failed assumption).

Author

Sam Brannen

Johannes Link

Since

1.0

Author

Sam Brannen

Johannes Link

See also

Constructors

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

Constructs an TestAbortedException with an empty message and no cause.

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

Constructs an TestAbortedException with a message but without cause.

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

Constructs an TestAbortedException 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?