public void Stop() { if (_td.State == TestState.Running) { _td.Stop(); } }
private void btnStop_Click(object sender, EventArgs e) { if (_td != null) { _td.Stop(); } }
/// <summary> /// Stops tests execution at the end of current tests. /// </summary> public override void Stop() { _td.Stop(); }