commonMain.ch.tutteli.atrium.assertions.Assertion.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atrium-core-jvm Show documentation
Show all versions of atrium-core-jvm Show documentation
Core module of Atrium, containing all contracts/interfaces and default implementations
package ch.tutteli.atrium.assertions
/**
* The base interface of all assertions, providing the method [holds].
*/
interface Assertion {
/**
* Indicates whether the assertion holds or not.
*
* @return `true` in case the assertion holds otherwise `false`.
*/
fun holds(): Boolean
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy