3

Kotest で複数のアサーションを DSL スタイルでチェックする方法はありますか? JUnit の Assertions.assertAll メソッドを使用しませんか?

のようなものを書くことができますか

firstValue shouldBe 1
and secondValue shouldBe 2

それ以外の

assertAll(
    { fistValue shouldBe 1 },
    { secondValue shouldBe 2 })
4

1 に答える 1