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

kotlin.test.DefaultAsserter.kt Maven / Gradle / Ivy

There is a newer version: 2.1.0-Beta1
Show newest version
package kotlin.test

/**
 * Default [Asserter] implementation to avoid dependency on JUnit or TestNG.
 */
class DefaultAsserter() : Asserter {

    override fun fail(message: String?): Nothing {
        if (message == null)
            throw AssertionError()
        else
            throw AssertionError(message)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy