com.oneeyedmen.kSera.ReturnAction.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.Expectations
import org.jmock.api.Action
class ReturnAction(delegate: Action) : TypedAction by delegate.asTyped() {
constructor(value: R) : this(Expectations.returnValue(value))
}