Inheritance: System.EventArgs
Exemplo n.º 1
0
 protected virtual void OnTestCompleted(TestCompletedEventArgs arg)
 {
     if (TestComplete != null)
     {
         TestComplete(this, arg);
     }
 }
Exemplo n.º 2
0
 protected virtual void OnTestCompleted(TestCompletedEventArgs arg)
 {
     if (TestComplete != null)
     {
         TestComplete(this, arg);
     }
 }
 private void TestComplete(object sender, TestCompletedEventArgs e)
 {
     _view.WriteResult(e.Test, e.Result);
 }
Exemplo n.º 4
0
 private void EngineOnTestComplete(object sender, TestCompletedEventArgs testCompletedEventArgs)
 {
     CatchEvent();
 }