Is any way to check multiple assertions in Kotest in DSL style - without Assertions.assertAll method from JUnit?
Can I write something like
firstValue shouldBe 1
and secondValue shouldBe 2
Instead of
assertAll(
{ fistValue shouldBe 1 },
{ secondValue shouldBe 2 })