internal TestRunResults(TestRun run) : base(run) { }
internal TestRunnerFinishedEventArgs(TestRun testRun, TestRunResults results, TestRunnerOptions opts) { Results = results; TestRun = testRun; _opts = opts; }
internal TestRunnerStartingEventArgs(TestRunnerOptions options, TestRun run, int willRunTests) { _options = options; _willRunTests = willRunTests; TestRun = run; }
protected abstract TestRunResults RunTestsCore(TestRun run);