Is there any way to document (by means of the DSL)...
# kotest
b
Is there any way to document (by means of the DSL) why a particular test is expected to pass/fail with Kotest? Something like this”
Copy code
because("map is empty ") mapOf().isValid() shouldBe false
c
I believe you're searching for
withClue
💯 1
b
Thanks!