suite abstract method
Declares a test suite.
name- name of the test suite, e.g. a class name.ignored- whether the test suite is ignored, e.g. marked with Ignore annotation.suiteFn- defines nested suites by callingkotlin.test.suiteand tests by callingkotlin.test.test.
Implementation
Unit suite(
String name,
Boolean ignored,
Unit Function() suiteFn,
);