From ce632baed34b5414a55f1c56d71633ff25b40abc Mon Sep 17 00:00:00 2001 From: Matt Ward Date: Wed, 22 Nov 2006 20:17:49 +0000 Subject: [PATCH] Running unit tests with code coverage no longer generates the unused NUnit xml output file. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2065 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../Project/Src/RunTestWithCodeCoverageCommand.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/AddIns/Misc/CodeCoverage/Project/Src/RunTestWithCodeCoverageCommand.cs b/src/AddIns/Misc/CodeCoverage/Project/Src/RunTestWithCodeCoverageCommand.cs index 8c139f742e..ce868cc732 100644 --- a/src/AddIns/Misc/CodeCoverage/Project/Src/RunTestWithCodeCoverageCommand.cs +++ b/src/AddIns/Misc/CodeCoverage/Project/Src/RunTestWithCodeCoverageCommand.cs @@ -87,9 +87,7 @@ namespace ICSharpCode.CodeCoverage { string ncoverOutputDirectory = GetNCoverOutputDirectory(helper.Project); NCoverSettings settings = GetNCoverSettings(helper.Project); - - helper.XmlOutputFile = Path.Combine(ncoverOutputDirectory, "NUnit.Xml"); - + runner.NCoverFileName = ncoverFileName; runner.ProfiledApplicationCommand = UnitTestApplicationStartHelper.UnitTestConsoleApplication; runner.ProfiledApplicationCommandLineArguments = helper.GetArguments();