Quick noob question. ```val subject = service.perf...
# kotest
c
Quick noob question.
Copy code
val subject = service.performAction()
subject shouldNotBe null
This generates following message
null should not equal null
Standard junit asserts and virtually all others allow to specify message text to make assertions reports informative, but with
should*
there is no such option, or am I missing something? How does one make assertion error reports informative with kotest?