commonTest.com.bkahlert.kommons.test.TimeKtTest.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.matchers.shouldBe
import kotlinx.datetime.Clock
import kotlinx.datetime.Instant
import kotlin.test.Test
class TimeKtTest {
@Test
fun clock() = testAll(Instant.parse("2020-02-02T02:02:02Z")) {
Clock.fixed(it).now() shouldBe it
}
}