commonMain.com.bkahlert.kommons.test.time.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 com.bkahlert.kommons.invoke
import kotlinx.datetime.Clock
import kotlinx.datetime.Instant
/**
* Returns a fixed [Clock] with its [Clock.now]
* always returning the specified [now].
*/
public fun Clock.Companion.fixed(now: Instant): Clock = invoke { now }