Пример #1
0
 public void Stop()
 {
     if (_td.State == TestState.Running)
     {
         _td.Stop();
     }
 }
Пример #2
0
        private void btnStop_Click(object sender, EventArgs e)
        {
            if (_td != null)
            {
                _td.Stop();

            }
        }
Пример #3
0
 /// <summary>
 /// Stops tests execution at the end of current tests.
 /// </summary>
 public override void Stop()
 {
     _td.Stop();
 }