Exemple #1
0
        protected override ProcessStartInfo GetProcessStartInfo(SelectedTests selectedTests)
        {
            var app = new MSpecApplication(selectedTests);

            app.Results = TestResultsMonitor.FileName;
            return(app.GetProcessStartInfo());
        }
		protected override ProcessStartInfo GetProcessStartInfo(IEnumerable<ITest> selectedTests)
		{
			var app = new MSpecApplication(selectedTests);
			var monitor = TestResultsReader as MSpecUnitTestMonitor;
			app.Results = monitor.FileName;
			return app.GetProcessStartInfo();
		}
Exemple #3
0
        protected override ProcessStartInfo GetProcessStartInfo(IEnumerable <ITest> selectedTests)
        {
            var app     = new MSpecApplication(selectedTests);
            var monitor = TestResultsReader as MSpecUnitTestMonitor;

            app.Results = monitor.FileName;
            return(app.GetProcessStartInfo());
        }
 protected override ProcessStartInfo GetProcessStartInfo(SelectedTests selectedTests)
 {
     var app = new MSpecApplication(selectedTests);
     app.Results = TestResultsMonitor.FileName;
     return app.GetProcessStartInfo();
 }