public static run(notnull options as TestRunnerOptions) as Int:
Runs selected test sources or packages and optionally writes JSON.
| Parameter | Description |
|---|---|
options | Parsed test runner options. |
Application.EXIT_SUCCESS when every test passes, otherwise Application.EXIT_FAILURE.
options = TestRunnerOptions.parse(["--json", "klyn.io"]) exitCode = TestConsoleLauncher.run(options)