kotest-assertions-core / io.kotest.matchers.booleans / kotlin.Boolean

Extensions for kotlin.Boolean

shouldBeFalse

Asserts that this Boolean is false

fun Boolean.shouldBeFalse(): Unit

shouldBeTrue

Asserts that this Boolean is true

fun Boolean.shouldBeTrue(): Unit

shouldNotBeFalse

Asserts that this Boolean is not false

fun Boolean.shouldNotBeFalse(): Unit

shouldNotBeTrue

Asserts that this Boolean is not true

fun Boolean.shouldNotBeTrue(): Unit