Esempio n. 1
0
 public void CancelRun()
 {
     if (runner != null && runner.Running)
     {
         runner.CancelRun();
     }
 }
Esempio n. 2
0
 /// <summary>
 /// Cancel the currently running test.
 /// Fail silently if there is none to
 /// allow for latency in the UI.
 /// </summary>
 public void CancelTestRun()
 {
     if (Running)
     {
         testRunner.CancelRun();
     }
 }
 private void Cancel()
 {
     ThreadPool.QueueUserWorkItem(delegate
     {
         runner.CancelRun();
     });
 }
Esempio n. 4
0
 public void StopRun(bool force)
 {
     _runner.CancelRun();
 }