testSuite
Registers a top-level TestSuite.
compartment is the optional TestCompartment the test suite belongs to.
Usage:
val myTestSuite by testSuite(compartment = TestCompartment.Concurrent) {
// test suite content
}Note: name and displayName are usually initialized by the compiler plugin, with name being the fully qualified name of the corresponding property and displayName being the simple name of that property. If you provide a name explicitly, you are responsible for making it unique within the compilation module.
Registers a top-level TestSuite.
Usage:
val myTestSuite by testSuite {
// test suite content
}Note: name and displayName are usually initialized by the compiler plugin, with name being the fully qualified name of the corresponding property and displayName being the simple name of that property. If you provide a name explicitly, you are responsible for making it unique within the compilation module.