예제 #1
0
 internal override void Run(Reporter reporter)
 {
     if(Format != TestFormat.Skip)
     {
         reporter.CallBuildTestSuiteHeader(this);
         Tests.Run(reporter);
         Result = Tests.CreateTestSuiteResult();
         reporter.CallBuildTestSuiteFooter(this);
     }
     else
     {
         Result = new TestSuiteResult(TestStatus.Skipped);
     }
 }
예제 #2
0
 internal override void SetSkipped()
 {
     Format = TestFormat.Skip;
     Result = new TestSuiteResult(TestStatus.Skipped);
 }