object AnyAssertionsBuilder : AnyAssertions
(source)
Delegates inter alia to the implementation of AnyAssertions. In detail, it implements AnyAssertions by delegating to anyAssertions which in turn delegates to the implementation via loadSingleService.
val typeTransformation: AnyTypeTransformationAssertionsBuilder
Returns AnyTypeTransformationAssertionsBuilder which inter alia delegates to the implementation of AnyTypeTransformationAssertions. |
fun <T : Any> isNotNull(plant: AssertionPlantNullable<T?>, type: KClass<T>, assertionCreator: AssertionPlant<T>.() -> Unit): <ERROR CLASS> |
|
fun <T : Any> isNotNullBut(plant: AssertionPlantNullable<T?>, type: KClass<T>, expected: T): <ERROR CLASS> |
|
fun <T : Any> isNotSame(plant: AssertionPlant<T>, expected: T): <ERROR CLASS> |
|
fun <T> isNull(plant: AssertionPlantNullable<T>): <ERROR CLASS> |
|
fun <T : Any> isNullIfNullGivenElse(plant: AssertionPlantNullable<T?>, type: KClass<T>, assertionCreatorOrNull: AssertionPlant<T>.() -> Unit): <ERROR CLASS> |
|
fun <T : Any> isNullable(plant: AssertionPlantNullable<T?>, type: KClass<T>, expectedOrNull: T?): <ERROR CLASS> |
|
fun <T : Any> isSame(plant: AssertionPlant<T>, expected: T): <ERROR CLASS> |
|
fun <T : Any> notToBe(plant: AssertionPlant<T>, expected: T): <ERROR CLASS> |
|
fun <T : Any> toBe(plant: AssertionPlant<T>, expected: T): <ERROR CLASS> |