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

commonTest.com.bkahlert.kommons.test.TimeKtTest.kt Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy