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

commonMain.io.mockk.proxy.MockKInvocationHandler.kt Maven / Gradle / Ivy

The newest version!
package io.mockk.proxy

import java.lang.reflect.Method
import java.util.concurrent.Callable

interface MockKInvocationHandler {
    @Throws(Exception::class)
    fun invocation(
        self: Any,
        method: Method?,
        originalCall: Callable<*>?,
        args: Array
    ): Any?
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy