com.malinskiy.marathon.time.Timer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Cross-platform test runner
package com.malinskiy.marathon.time
interface Timer {
val startTimeMillis: Long
val elapsedTimeMillis: Long
fun currentTimeMillis(): Long
fun measure(block: () -> Unit): Long
}