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