com.oneeyedmen.kSera.ThrowAction.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 ThrowAction(delegate: Action) : TypedAction by delegate.asTyped() {
constructor(exception: Throwable): this(Expectations.throwException(exception))
}