Пример #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);
     }
 }