All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmTest.com.bkahlert.kommons.test.JvmKotlinTestKtTest.kt Maven / Gradle / Ivy

There is a newer version: 2.8.0
Show newest version
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 as KotlinTest

class JvmKotlinTestKtTest {

    @KotlinTest fun test_success() {
        shouldNotThrowAny {
            test {
                "foo bar" shouldContain "foo"
                "foo bar" shouldContain "bar"
            }
        }
    }

    @KotlinTest fun test_single_fail() {
        shouldThrow {
            test {
                "foo bar" shouldContain "baz"
                "foo bar" shouldContain "bar"
            }
        }.message shouldBe """
            "foo bar" should include substring "baz"
        """.trimIndent()
    }

    @KotlinTest 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"
            ${t}at com.bkahlert.kommons.test.JvmKotlinTestKtTest.test_multiple_fails(JvmKotlinTestKtTest.kt:34)
            2) "foo bar" should include substring "FOO"
            ${t}at com.bkahlert.kommons.test.JvmKotlinTestKtTest.test_multiple_fails(JvmKotlinTestKtTest.kt:35)
            
        """.trimIndent()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy