Asserter
Abstracts the logic for performing assertions. Specific implementations of Asserter can use JUnit or TestNG assertion facilities.
Functions
Inheritors
JUnit5Asserter
Implements kotlin.test
assertions by delegating them to org.junit.jupiter.api.Assertions
class.
object JUnit5Asserter : Asserter
JUnitAsserter
Implements kotlin.test
assertions by delegating them to org.junit.Assert
class.
object JUnitAsserter : Asserter
TestNGAsserter
Implements kotlin.test
assertions by delegating them to org.testng.Assert
class.
object TestNGAsserter : Asserter