ExpectLambda

interface ExpectLambda : Expect<() -> Unit>

Functions

Link copied to clipboard
expect abstract fun toBe(expected: () -> Unit)
expect abstract fun toBe(expected: () -> Unit, message: String)
Link copied to clipboard
inline fun <E> Expect<Any?>.toBe(): E
Link copied to clipboard
inline fun <E> Expect<E>.toBeEqualTo(expected: E, message: String? = null)
Link copied to clipboard
fun <T : Comparable<T>> Expect<T>.toBeGreaterThan(expected: T)
Link copied to clipboard
Link copied to clipboard
inline fun <E> Expect<Any?>.toBeInstanceOf(message: String? = null): Expect<E>
Link copied to clipboard
fun <T : Comparable<T>> Expect<T>.toBeLessThan(expected: T)
Link copied to clipboard
Link copied to clipboard
expect abstract fun toBeNonNull()
expect abstract fun toBeNonNull(message: String)
Link copied to clipboard
expect abstract fun toBeNull()
expect abstract fun toBeNull(message: String)
Link copied to clipboard
inline fun <T> Expect<T>.toBeUnequalTo(expected: T, message: String? = null)
Link copied to clipboard
inline fun Expect<String?>.toContain(other: String, ignoreCase: Boolean = true, message: String? = null)
Link copied to clipboard
abstract fun toFail(): Throwable
Link copied to clipboard
inline fun <T : Throwable> ExpectLambda.toFailWith(): T
Link copied to clipboard
abstract fun toPass()

Properties

Link copied to clipboard
expect abstract val value: () -> Unit