com.oneeyedmen.kSera.actions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of k-sera Show documentation
Show all versions of k-sera Show documentation
A Kotlin Wrapper for JMock
The newest version!
package com.oneeyedmen.kSera
import org.jmock.api.Invocation
fun returnValue(value: R): TypedAction = ReturnAction(value)
fun throwException(x: T): TypedAction = ThrowAction(x)
fun invoke(name: String, lambda: (Invocation) -> R) = InvokeAction(name, lambda)