public override void Stop()
        {
            if (this.runner != null && this.runner.Profiler.IsRunning)
            {
                LoggingService.Info("stopping profiler...");
                runner.Stop();
            }

            if (testResultsMonitor != null)
            {
                testResultsMonitor.Stop();
                testResultsMonitor.Read();
                testResultsMonitor = null;
            }
        }
 public void Kill()
 {
     profilerRunner.Stop();
 }