jsTest.com.bkahlert.kommons.test.JsTestKtTest.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kommons-test Show documentation
Show all versions of kommons-test Show documentation
Kommons Test is a Kotlin Multiplatform Library to ease testing.
package com.bkahlert.kommons.test
import io.kotest.assertions.throwables.shouldNotThrowAny
import io.kotest.assertions.throwables.shouldThrow
import io.kotest.matchers.shouldBe
import io.kotest.matchers.string.shouldContain
import kotlin.test.Test
class JsTestKtTest {
@Test fun test_success() {
shouldNotThrowAny {
test {
"foo bar" shouldContain "foo"
"foo bar" shouldContain "bar"
}
}
}
@Test fun test_single_fail() {
shouldThrow {
test {
"foo bar" shouldContain "baz"
"foo bar" shouldContain "bar"
}
}.message shouldBe """
"foo bar" should include substring "baz"
""".trimIndent()
}
@Test fun test_multiple_fails() {
shouldThrow {
test {
"foo bar" shouldContain "baz"
"foo bar" shouldContain "FOO"
}
}.message shouldBe """
The following 2 assertions failed:
1) "foo bar" should include substring "baz"
2) "foo bar" should include substring "FOO"
""".trimIndent()
}
}