interface KInOrder : InOrder
abstract fun <T> verifyBlocking(mock: T, f: suspend T.() -> Unit): Unit
Verifies certain suspending behavior happened once in order. abstract fun <T> verifyBlocking(mock: T, mode: VerificationMode, f: suspend T.() -> Unit): Unit
Verifies certain suspending behavior happened at least once / exact number of times / never in order. |
class InOrderOnType<T> : KInOrder |
|
class KInOrderDecorator : KInOrder, InOrder |