
commonMain.io.mockk.impl.recording.AutoHinter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockk-jvm Show documentation
Show all versions of mockk-jvm Show documentation
Mocking library for Kotlin
The newest version!
package io.mockk.impl.recording
import io.mockk.MockKGateway
open class AutoHinter {
open fun autoHint(
callRecorder: MockKGateway.CallRecorder,
i: Int,
n: Int,
block: () -> T
) {
callRecorder.round(i, n)
block()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy