All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.ch.tutteli.atrium.assertions.Assertion.kt Maven / Gradle / Ivy

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