doc / ch.tutteli.atrium.api.cc.infix.en_UK / message

message

infix fun <T : Throwable> Assert<T>.message(assertionCreator: AssertionPlant<String>.() -> Unit): Unit

Creates an AssertionPlantNullable for the message of the plant's subject (which is a Throwable) and makes the assertion that the message ought notToBeNull and uses assertionCreator which might create further Assertions which are lazily evaluated at the end.

Exceptions

AssertionError - Might throw an AssertionError in case message is null or if an additionally created Assertions (by calling assertionCreator) does not hold.

Return
Notice, that this assertion function cannot provide a fluent API because it depends on whether the first assertion (message]Throwable.message is not null) holds or not. Define subsequent assertions via the assertionCreator lambda.