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

io.mockk.impl.recording.AutoHinter.kt Maven / Gradle / Ivy

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