Skip to content

Compatibility with Arrowopensavvy.prepared.compat.arrow.core

Package-level declarations

Functions

assertRaises

inline fun <Failure> assertRaises(expected: Failure, block: Raise<Failure>.() -> Any?)

Fails the test if block doesn't raise with expected.

assertRaisesWith

inline fun <Failure> assertRaisesWith(block: Raise<Any?>.() -> Any?)

Fails the test if block doesn't raise with a value of type Failure.

checkRaises

inline fun <Failure> checkRaises(block: Raise<Any?>.() -> Any?)

Fails the test if block doesn't raise with a value of type Failure.

inline fun <Failure> checkRaises(expected: Failure, block: Raise<Any?>.() -> Any?)

Fails the test if block doesn't raise with expected.

failOnRaise

Fails the test if block raises.