se.lovef.assert.v1.check.Check.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-assert-utils Show documentation
Show all versions of kotlin-assert-utils Show documentation
Kotlin JUnit 4 Assert Utilities
package se.lovef.assert.v1.check
/**
* Runs a check on an object.
*
* Date: 2017-12-03
* @author Love
*/
interface Check {
operator fun invoke(toCheck: T)
}