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