interface IAssertionVerbFactory
abstract fun checkException(act: () -> Unit): ThrowableFluent | 
|
abstract fun <T : Any> checkImmediately(subject: T): IAssertionPlant<T> | 
|
abstract fun <T : Any> checkLazily(subject: T, createAssertions: IAssertionPlant<T>.() -> Unit): IAssertionPlant<T> | 
|
abstract fun <T> checkNullable(subject: T): IAssertionPlantNullable<T> |