Пример #1
0
 private void HandleOnExecutionProgress(object sender, TestExecutionProgressEventArgs e)
 {
     var map = m_Tests[e.Id];
     map.Reports.AddToSection(
         e.SectionName,
         new List<TestSection>
             {
                 e.Section
             });
 }
 private void HandleOnExecutionProgress(object sender, TestExecutionProgressEventArgs eventArgs)
 {
     var local = OnExecutionProgress;
     if (local != null)
     {
         // The remote environments don't actually know the test ID, but we do ...
         local(this, new TestExecutionProgressEventArgs(RunningTest, eventArgs.SectionName, eventArgs.Section));
     }
 }