Am I missing something in the Assertions, or not u...
# kotlintest
m
Am I missing something in the Assertions, or not using them correctly? I'm used to AssertJ, and it's very descriptive messages when things don't match. Kotlintest's assertions seem to only tell me that the condition wasn't met, but no explanation/descriptions. Is there a way to have them be descriptive, or should I adopt AssertJ/Atrium instead? I just really like the
actual shouldBe expected
format vs
expect(actual) shouldBe expected
format required by the other two.