kotlin.test
All Types
kotlin.test.AfterClass
Marks a function to be executed after a suite. Not supported in Kotlin/Common.
kotlin.test.AfterTest
Marks a function to be invoked after each test.
kotlin.test.Asserter
Abstracts the logic for performing assertions. Specific implementations of Asserter can use JUnit or TestNG assertion facilities.
kotlin.test.AsserterContributor
Checks applicability and provides Asserter instance
kotlin.test.AssertionResult
Describes the result of an assertion execution.
kotlin.test.BeforeClass
Marks a function to be executed before a suite. Not supported in Kotlin/Common.
kotlin.test.BeforeTest
Marks a function to be invoked before each test.
kotlin.test.DefaultAsserter
Default Asserter implementation to avoid dependency on JUnit or TestNG.
kotlin.test.FrameworkAdapter
Serves as a bridge to a testing framework.
kotlin.test.Ignore
Marks a test or a suite as ignored.
kotlin.test.junit5.JUnit5Asserter
Implements kotlin.test
assertions by delegating them to org.junit.jupiter.api.Assertions
class.
kotlin.test.junit5.JUnit5Contributor
Provides JUnit5Asserter if org.junit.jupiter.api.Assertions
class is found in the classpath.
kotlin.test.junit.JUnitAsserter
Implements kotlin.test
assertions by delegating them to org.junit.Assert
class.
kotlin.test.junit.JUnitContributor
Provides JUnitAsserter if org.junit.Assert
is found in the classpath.
kotlin.test.Test
Marks a function as a test.
kotlin.test.testng.TestNGAsserter
Implements kotlin.test
assertions by delegating them to org.testng.Assert
class.
kotlin.test.testng.TestNGContributor
Provides TestNGAsserter if org.testng.Assert
is found in the classpath.