jvmTest.com.bkahlert.kommons.test.junit.DisplayNameTest.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.junit
import com.bkahlert.kommons.test.test
import io.kotest.matchers.collections.shouldContainExactly
import io.kotest.matchers.should
import io.kotest.matchers.shouldBe
import org.junit.jupiter.api.Test
class DisplayNameTest {
@Test fun display_name() = test {
DisplayName(listOf("Engine", "Test", "Nested"), "method") should {
it.ancestorDisplayNames.shouldContainExactly("Engine", "Test", "Nested")
it.displayName shouldBe "method"
it.toString() shouldBe "method"
it.composedDisplayName shouldBe "Test ➜ Nested ➜ method"
}
}
}