110 lines
3.4 KiB
110 lines
3.4 KiB
//// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
//// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
// |
|
//using System; |
|
//using System.Diagnostics; |
|
//using System.IO; |
|
//using ICSharpCode.Core; |
|
//using ICSharpCode.SharpDevelop.Project; |
|
//using ICSharpCode.UnitTesting; |
|
// |
|
//namespace ICSharpCode.CodeCoverage |
|
//{ |
|
// public class CodeCoverageTestRunner : TestProcessRunnerBase |
|
// { |
|
// UnitTestingOptions options; |
|
// IFileSystem fileSystem; |
|
// OpenCoverApplication partCoverApplication; |
|
// OpenCoverSettingsFactory settingsFactory; |
|
// |
|
// public CodeCoverageTestRunner() |
|
// : this(new CodeCoverageTestRunnerContext()) |
|
// { |
|
// } |
|
// |
|
// public CodeCoverageTestRunner(CodeCoverageTestRunnerContext context) |
|
// : base(context) |
|
// { |
|
// this.options = context.Options; |
|
// this.fileSystem = context.CodeCoverageFileSystem; |
|
// settingsFactory = new OpenCoverSettingsFactory(fileSystem); |
|
// } |
|
// |
|
// public bool HasCodeCoverageResults() |
|
// { |
|
// return fileSystem.FileExists(CodeCoverageResultsFileName); |
|
// } |
|
// |
|
// public CodeCoverageResults ReadCodeCoverageResults() |
|
// { |
|
// TextReader reader = fileSystem.CreateTextReader(CodeCoverageResultsFileName); |
|
// return new CodeCoverageResults(reader); |
|
// } |
|
// |
|
// public string CodeCoverageResultsFileName { |
|
// get { return partCoverApplication.CodeCoverageResultsFileName; } |
|
// } |
|
// |
|
// public override void Start(SelectedTests selectedTests) |
|
// { |
|
// AddProfilerEnvironmentVariableToProcessRunner(); |
|
// CreatePartCoverApplication(selectedTests); |
|
// RemoveExistingCodeCoverageResultsFile(); |
|
// CreateDirectoryForCodeCoverageResultsFile(); |
|
// AppendRunningCodeCoverageMessage(); |
|
// |
|
// base.Start(selectedTests); |
|
// } |
|
// |
|
// void AddProfilerEnvironmentVariableToProcessRunner() |
|
// { |
|
// ProcessRunner.EnvironmentVariables.Add("COMPLUS_ProfAPI_ProfilerCompatibilitySetting", "EnableV2Profiler"); |
|
// } |
|
// |
|
// void CreatePartCoverApplication(SelectedTests selectedTests) |
|
// { |
|
// NUnitConsoleApplication nunitConsoleApp = new NUnitConsoleApplication(selectedTests, options); |
|
// nunitConsoleApp.Results = base.TestResultsMonitor.FileName; |
|
// |
|
// OpenCoverSettings settings = settingsFactory.CreateOpenCoverSettings(selectedTests.Project); |
|
// partCoverApplication = new OpenCoverApplication(nunitConsoleApp, settings); |
|
// } |
|
// |
|
// void RemoveExistingCodeCoverageResultsFile() |
|
// { |
|
// string fileName = CodeCoverageResultsFileName; |
|
// if (fileSystem.FileExists(fileName)) { |
|
// fileSystem.DeleteFile(fileName); |
|
// } |
|
// } |
|
// |
|
// void CreateDirectoryForCodeCoverageResultsFile() |
|
// { |
|
// string directory = Path.GetDirectoryName(CodeCoverageResultsFileName); |
|
// if (!fileSystem.DirectoryExists(directory)) { |
|
// fileSystem.CreateDirectory(directory); |
|
// } |
|
// } |
|
// |
|
// void AppendRunningCodeCoverageMessage() |
|
// { |
|
// string message = ParseString("${res:ICSharpCode.CodeCoverage.RunningCodeCoverage}"); |
|
// OnMessageReceived(message); |
|
// } |
|
// |
|
// protected virtual string ParseString(string text) |
|
// { |
|
// return StringParser.Parse(text); |
|
// } |
|
// |
|
// protected override ProcessStartInfo GetProcessStartInfo(SelectedTests selectedTests) |
|
// { |
|
// return partCoverApplication.GetProcessStartInfo(); |
|
// } |
|
// |
|
// protected override TestResult CreateTestResultForTestFramework(TestResult testResult) |
|
// { |
|
// return new NUnitTestResult(testResult); |
|
// } |
|
// } |
|
//}
|
|
|