commonMain.korlibs.test.BooleanSubject.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktruth-jvm Show documentation
Show all versions of ktruth-jvm Show documentation
Multiplatform testing library. Based off the truth API: https://truth.dev/
The newest version!
package korlibs.test
import kotlin.test.assertFalse
import kotlin.test.assertTrue
class BooleanSubject(val subject: Boolean) {
fun isTrue() {
assertTrue(subject)
}
fun isFalse() {
assertFalse(subject)
}
}