TestSkippedException

actual typealias TestSkippedException = org.opentest4j.TestSkippedException

Specialization of IncompleteExecutionException used to indicate that a test was skipped prior to execution (e.g., disabled or ignored).

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 TestSkippedException with an empty message and no cause.

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

Constructs an TestSkippedException with a message but without cause.

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

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