Browse Source

[UnitTesting] Clean up directory structure

newNRvisualizers
Daniel Grunwald 14 years ago
parent
commit
07afc1301b
  1. 0
      src/AddIns/Analysis/UnitTesting/Commands/IRunTestCommandContext.cs
  2. 0
      src/AddIns/Analysis/UnitTesting/Commands/MultipleProjectBuildable.cs
  3. 0
      src/AddIns/Analysis/UnitTesting/Commands/RunTestCommandContext.cs
  4. 0
      src/AddIns/Analysis/UnitTesting/Commands/RunningTestsCondition.cs
  5. 0
      src/AddIns/Analysis/UnitTesting/Commands/TestableCondition.cs
  6. 0
      src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestBuildOptions.cs
  7. 0
      src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestBuildProjectFactory.cs
  8. 0
      src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestDebuggerService.cs
  9. 0
      src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestFileService.cs
  10. 0
      src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestProcessRunner.cs
  11. 0
      src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestSaveAllFilesCommand.cs
  12. 0
      src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestTaskService.cs
  13. 0
      src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestWorkbench.cs
  14. 0
      src/AddIns/Analysis/UnitTesting/Model/TestResult.cs
  15. 0
      src/AddIns/Analysis/UnitTesting/Options/UnitTestingOptions.cs
  16. 0
      src/AddIns/Analysis/UnitTesting/Options/UnitTestingOptionsPanel.xaml
  17. 0
      src/AddIns/Analysis/UnitTesting/Options/UnitTestingOptionsPanel.xaml.cs
  18. 0
      src/AddIns/Analysis/UnitTesting/Pad/EmptyUnitTestsPad.cs
  19. 0
      src/AddIns/Analysis/UnitTesting/Pad/IUnitTestsPad.cs
  20. 0
      src/AddIns/Analysis/UnitTesting/Pad/UnitTestsPad.cs
  21. 51
      src/AddIns/Analysis/UnitTesting/RemovedClasses.cs
  22. 0
      src/AddIns/Analysis/UnitTesting/TestFramework/IRegisteredTestFrameworks.cs
  23. 0
      src/AddIns/Analysis/UnitTesting/TestFramework/ITestFramework.cs
  24. 0
      src/AddIns/Analysis/UnitTesting/TestFramework/ITestFrameworkFactory.cs
  25. 2
      src/AddIns/Analysis/UnitTesting/TestFramework/ITestResultsMonitor.cs
  26. 0
      src/AddIns/Analysis/UnitTesting/TestFramework/RegisteredTestFrameworks.cs
  27. 0
      src/AddIns/Analysis/UnitTesting/TestFramework/TestFrameworkDescriptor.cs
  28. 0
      src/AddIns/Analysis/UnitTesting/TestFramework/TestFrameworkDoozer.cs
  29. 0
      src/AddIns/Analysis/UnitTesting/TestFramework/TestFrameworkFactory.cs
  30. 0
      src/AddIns/Analysis/UnitTesting/TestFramework/TestService.cs
  31. 4
      src/AddIns/Analysis/UnitTesting/TestRunner/ITestRunner.cs
  32. 2
      src/AddIns/Analysis/UnitTesting/TestRunner/MessageReceivedEventArgs.cs
  33. 0
      src/AddIns/Analysis/UnitTesting/TestRunner/SelectedTests.cs
  34. 0
      src/AddIns/Analysis/UnitTesting/TestRunner/TestDebuggerBase.cs
  35. 2
      src/AddIns/Analysis/UnitTesting/TestRunner/TestFinishedEventArgs.cs
  36. 0
      src/AddIns/Analysis/UnitTesting/TestRunner/TestProcessRunnerBase.cs
  37. 0
      src/AddIns/Analysis/UnitTesting/TestRunner/TestProcessRunnerBaseContext.cs
  38. 0
      src/AddIns/Analysis/UnitTesting/TestRunner/TestResultTask.cs
  39. 2
      src/AddIns/Analysis/UnitTesting/TestRunner/TestResultsMonitor.cs
  40. 0
      src/AddIns/Analysis/UnitTesting/TestRunner/TestResultsReader.cs
  41. 4
      src/AddIns/Analysis/UnitTesting/TestRunner/TestRunnerBase.cs
  42. 0
      src/AddIns/Analysis/UnitTesting/TreeView/ClassUnitTestNode.cs
  43. 0
      src/AddIns/Analysis/UnitTesting/TreeView/ITestTreeView.cs
  44. 0
      src/AddIns/Analysis/UnitTesting/TreeView/MemberUnitTestNode.cs
  45. 0
      src/AddIns/Analysis/UnitTesting/TreeView/NamespaceUnitTestNode.cs
  46. 0
      src/AddIns/Analysis/UnitTesting/TreeView/ProjectUnitTestNode.cs
  47. 0
      src/AddIns/Analysis/UnitTesting/TreeView/RootUnitTestNode.cs
  48. 0
      src/AddIns/Analysis/UnitTesting/TreeView/TestTreeView.cs
  49. 0
      src/AddIns/Analysis/UnitTesting/TreeView/UnitTestBaseNode.cs
  50. 111
      src/AddIns/Analysis/UnitTesting/UnitTesting.csproj

0
src/AddIns/Analysis/UnitTesting/Interfaces/IRunTestCommandContext.cs → src/AddIns/Analysis/UnitTesting/Commands/IRunTestCommandContext.cs

0
src/AddIns/Analysis/UnitTesting/MultipleProjectBuildable.cs → src/AddIns/Analysis/UnitTesting/Commands/MultipleProjectBuildable.cs

0
src/AddIns/Analysis/UnitTesting/RunTestCommandContext.cs → src/AddIns/Analysis/UnitTesting/Commands/RunTestCommandContext.cs

0
src/AddIns/Analysis/UnitTesting/Service/RunningTestsCondition.cs → src/AddIns/Analysis/UnitTesting/Commands/RunningTestsCondition.cs

0
src/AddIns/Analysis/UnitTesting/Service/TestableCondition.cs → src/AddIns/Analysis/UnitTesting/Commands/TestableCondition.cs

0
src/AddIns/Analysis/UnitTesting/Implementation/UnitTestBuildOptions.cs → src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestBuildOptions.cs

0
src/AddIns/Analysis/UnitTesting/Implementation/UnitTestBuildProjectFactory.cs → src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestBuildProjectFactory.cs

0
src/AddIns/Analysis/UnitTesting/Implementation/UnitTestDebuggerService.cs → src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestDebuggerService.cs

0
src/AddIns/Analysis/UnitTesting/Implementation/UnitTestFileService.cs → src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestFileService.cs

0
src/AddIns/Analysis/UnitTesting/UnitTestProcessRunner.cs → src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestProcessRunner.cs

0
src/AddIns/Analysis/UnitTesting/Implementation/UnitTestSaveAllFilesCommand.cs → src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestSaveAllFilesCommand.cs

0
src/AddIns/Analysis/UnitTesting/Implementation/UnitTestTaskService.cs → src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestTaskService.cs

0
src/AddIns/Analysis/UnitTesting/Implementation/UnitTestWorkbench.cs → src/AddIns/Analysis/UnitTesting/Interfaces/UnitTestWorkbench.cs

0
src/AddIns/Analysis/UnitTesting/Service/TestResult.cs → src/AddIns/Analysis/UnitTesting/Model/TestResult.cs

0
src/AddIns/Analysis/UnitTesting/UnitTestingOptions.cs → src/AddIns/Analysis/UnitTesting/Options/UnitTestingOptions.cs

0
src/AddIns/Analysis/UnitTesting/Gui/UnitTestingOptionsPanel.xaml → src/AddIns/Analysis/UnitTesting/Options/UnitTestingOptionsPanel.xaml

0
src/AddIns/Analysis/UnitTesting/Gui/UnitTestingOptionsPanel.xaml.cs → src/AddIns/Analysis/UnitTesting/Options/UnitTestingOptionsPanel.xaml.cs

0
src/AddIns/Analysis/UnitTesting/Gui/EmptyUnitTestsPad.cs → src/AddIns/Analysis/UnitTesting/Pad/EmptyUnitTestsPad.cs

0
src/AddIns/Analysis/UnitTesting/Interfaces/IUnitTestsPad.cs → src/AddIns/Analysis/UnitTesting/Pad/IUnitTestsPad.cs

0
src/AddIns/Analysis/UnitTesting/Gui/UnitTestsPad.cs → src/AddIns/Analysis/UnitTesting/Pad/UnitTestsPad.cs

51
src/AddIns/Analysis/UnitTesting/RemovedClasses.cs

@ -1,51 +0,0 @@ @@ -1,51 +0,0 @@
// 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.Collections.Generic;
namespace ICSharpCode.UnitTesting
{
/// <summary>
/// Used to determine which classes have been removed by the user in the project.
/// </summary>
public class RemovedClasses
{
Dictionary<string, IClass> classDictionary = new Dictionary<string, IClass>();
public RemovedClasses()
{
}
public void Add(IList<IClass> classes)
{
foreach (IClass c in classes) {
classDictionary[c.DotNetName] = c;
foreach (IClass innerClass in c.InnerClasses) {
classDictionary[innerClass.DotNetName] = innerClass;
}
}
}
/// <summary>
///
/// </summary>
/// <param name="c"></param>
public void Remove(IClass c)
{
classDictionary.Remove(c.DotNetName);
foreach (IClass innerClass in c.InnerClasses) {
classDictionary.Remove(innerClass.DotNetName);
}
}
public IList<IClass> GetMissingClasses()
{
List<IClass> missingClasses = new List<IClass>();
foreach (IClass c in classDictionary.Values) {
missingClasses.Add(c);
}
return missingClasses;
}
}
}

0
src/AddIns/Analysis/UnitTesting/Interfaces/IRegisteredTestFrameworks.cs → src/AddIns/Analysis/UnitTesting/TestFramework/IRegisteredTestFrameworks.cs

0
src/AddIns/Analysis/UnitTesting/Interfaces/ITestFramework.cs → src/AddIns/Analysis/UnitTesting/TestFramework/ITestFramework.cs

0
src/AddIns/Analysis/UnitTesting/Interfaces/ITestFrameworkFactory.cs → src/AddIns/Analysis/UnitTesting/TestFramework/ITestFrameworkFactory.cs

2
src/AddIns/Analysis/UnitTesting/Interfaces/ITestResultsMonitor.cs → src/AddIns/Analysis/UnitTesting/TestFramework/ITestResultsMonitor.cs

@ -7,7 +7,7 @@ namespace ICSharpCode.UnitTesting @@ -7,7 +7,7 @@ namespace ICSharpCode.UnitTesting
{
public interface ITestResultsMonitor : IDisposable
{
event TestFinishedEventHandler TestFinished;
event EventHandler<TestFinishedEventArgs> TestFinished;
string FileName { get; set; }

0
src/AddIns/Analysis/UnitTesting/Service/RegisteredTestFrameworks.cs → src/AddIns/Analysis/UnitTesting/TestFramework/RegisteredTestFrameworks.cs

0
src/AddIns/Analysis/UnitTesting/Service/TestFrameworkDescriptor.cs → src/AddIns/Analysis/UnitTesting/TestFramework/TestFrameworkDescriptor.cs

0
src/AddIns/Analysis/UnitTesting/Service/TestFrameworkDoozer.cs → src/AddIns/Analysis/UnitTesting/TestFramework/TestFrameworkDoozer.cs

0
src/AddIns/Analysis/UnitTesting/Service/TestFrameworkFactory.cs → src/AddIns/Analysis/UnitTesting/TestFramework/TestFrameworkFactory.cs

0
src/AddIns/Analysis/UnitTesting/Service/TestService.cs → src/AddIns/Analysis/UnitTesting/TestFramework/TestService.cs

4
src/AddIns/Analysis/UnitTesting/Interfaces/ITestRunner.cs → src/AddIns/Analysis/UnitTesting/TestRunner/ITestRunner.cs

@ -8,9 +8,9 @@ namespace ICSharpCode.UnitTesting @@ -8,9 +8,9 @@ namespace ICSharpCode.UnitTesting
{
public interface ITestRunner : IDisposable
{
event TestFinishedEventHandler TestFinished;
event EventHandler<TestFinishedEventArgs> TestFinished;
event EventHandler AllTestsFinished;
event MessageReceivedEventHandler MessageReceived;
event EventHandler<MessageReceivedEventArgs> MessageReceived;
void Start(SelectedTests selectedTests);
void Stop();
}

2
src/AddIns/Analysis/UnitTesting/Service/MessageReceivedEventArgs.cs → src/AddIns/Analysis/UnitTesting/TestRunner/MessageReceivedEventArgs.cs

@ -5,8 +5,6 @@ using System; @@ -5,8 +5,6 @@ using System;
namespace ICSharpCode.UnitTesting
{
public delegate void MessageReceivedEventHandler(object sender, MessageReceivedEventArgs e);
public class MessageReceivedEventArgs : EventArgs
{
string message;

0
src/AddIns/Analysis/UnitTesting/Service/SelectedTests.cs → src/AddIns/Analysis/UnitTesting/TestRunner/SelectedTests.cs

0
src/AddIns/Analysis/UnitTesting/Service/TestDebuggerBase.cs → src/AddIns/Analysis/UnitTesting/TestRunner/TestDebuggerBase.cs

2
src/AddIns/Analysis/UnitTesting/Service/TestFinishedEventArgs.cs → src/AddIns/Analysis/UnitTesting/TestRunner/TestFinishedEventArgs.cs

@ -5,8 +5,6 @@ using System; @@ -5,8 +5,6 @@ using System;
namespace ICSharpCode.UnitTesting
{
public delegate void TestFinishedEventHandler(object source, TestFinishedEventArgs e);
public class TestFinishedEventArgs : EventArgs
{
TestResult result;

0
src/AddIns/Analysis/UnitTesting/Service/TestProcessRunnerBase.cs → src/AddIns/Analysis/UnitTesting/TestRunner/TestProcessRunnerBase.cs

0
src/AddIns/Analysis/UnitTesting/Service/TestProcessRunnerBaseContext.cs → src/AddIns/Analysis/UnitTesting/TestRunner/TestProcessRunnerBaseContext.cs

0
src/AddIns/Analysis/UnitTesting/TestResultTask.cs → src/AddIns/Analysis/UnitTesting/TestRunner/TestResultTask.cs

2
src/AddIns/Analysis/UnitTesting/TestResultsMonitor.cs → src/AddIns/Analysis/UnitTesting/TestRunner/TestResultsMonitor.cs

@ -26,7 +26,7 @@ namespace ICSharpCode.UnitTesting @@ -26,7 +26,7 @@ namespace ICSharpCode.UnitTesting
/// <summary>
/// Raised when a single test has been completed.
/// </summary>
public event TestFinishedEventHandler TestFinished;
public event EventHandler<TestFinishedEventArgs> TestFinished;
public TestResultsMonitor(string fileName)
{

0
src/AddIns/Analysis/UnitTesting/TestResultsReader.cs → src/AddIns/Analysis/UnitTesting/TestRunner/TestResultsReader.cs

4
src/AddIns/Analysis/UnitTesting/Service/TestRunnerBase.cs → src/AddIns/Analysis/UnitTesting/TestRunner/TestRunnerBase.cs

@ -37,7 +37,7 @@ namespace ICSharpCode.UnitTesting @@ -37,7 +37,7 @@ namespace ICSharpCode.UnitTesting
}
}
public event TestFinishedEventHandler TestFinished;
public event EventHandler<TestFinishedEventArgs> TestFinished;
protected void OnTestFinished(object source, TestFinishedEventArgs e)
{
@ -52,7 +52,7 @@ namespace ICSharpCode.UnitTesting @@ -52,7 +52,7 @@ namespace ICSharpCode.UnitTesting
return testResult;
}
public event MessageReceivedEventHandler MessageReceived;
public event EventHandler<MessageReceivedEventArgs> MessageReceived;
protected virtual void OnMessageReceived(string message)
{

0
src/AddIns/Analysis/UnitTesting/Nodes/ClassUnitTestNode.cs → src/AddIns/Analysis/UnitTesting/TreeView/ClassUnitTestNode.cs

0
src/AddIns/Analysis/UnitTesting/Interfaces/ITestTreeView.cs → src/AddIns/Analysis/UnitTesting/TreeView/ITestTreeView.cs

0
src/AddIns/Analysis/UnitTesting/Nodes/MemberUnitTestNode.cs → src/AddIns/Analysis/UnitTesting/TreeView/MemberUnitTestNode.cs

0
src/AddIns/Analysis/UnitTesting/Nodes/NamespaceUnitTestNode.cs → src/AddIns/Analysis/UnitTesting/TreeView/NamespaceUnitTestNode.cs

0
src/AddIns/Analysis/UnitTesting/Nodes/ProjectUnitTestNode.cs → src/AddIns/Analysis/UnitTesting/TreeView/ProjectUnitTestNode.cs

0
src/AddIns/Analysis/UnitTesting/Nodes/RootUnitTestNode.cs → src/AddIns/Analysis/UnitTesting/TreeView/RootUnitTestNode.cs

0
src/AddIns/Analysis/UnitTesting/TestTreeView.cs → src/AddIns/Analysis/UnitTesting/TreeView/TestTreeView.cs

0
src/AddIns/Analysis/UnitTesting/Nodes/UnitTestBaseNode.cs → src/AddIns/Analysis/UnitTesting/TreeView/UnitTestBaseNode.cs

111
src/AddIns/Analysis/UnitTesting/UnitTesting.csproj

@ -67,78 +67,78 @@ @@ -67,78 +67,78 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Commands\AbstractRunTestCommand.cs" />
<Compile Include="Commands\IRunTestCommandContext.cs" />
<Compile Include="Commands\MultipleProjectBuildable.cs" />
<Compile Include="Commands\RunAllTestsInPadCommand.cs" />
<Compile Include="Commands\RunningTestsCondition.cs" />
<Compile Include="Commands\RunProjectTestsInPadCommand.cs" />
<Compile Include="Commands\RunTestCommandContext.cs" />
<Compile Include="Commands\RunTestInPadCommand.cs" />
<Compile Include="Commands\RunTestWithDebuggerCommand.cs" />
<Compile Include="Commands\TestableCondition.cs" />
<Compile Include="Commands\UnitTestCommands.cs" />
<Compile Include="Gui\EmptyUnitTestsPad.cs" />
<Compile Include="Gui\UnitTestingOptionsPanel.xaml.cs">
<DependentUpon>UnitTestingOptionsPanel.xaml</DependentUpon>
</Compile>
<Compile Include="Gui\UnitTestsPad.cs" />
<Compile Include="Implementation\UnitTestBuildOptions.cs" />
<Compile Include="Implementation\UnitTestBuildProjectFactory.cs" />
<Compile Include="Implementation\UnitTestDebuggerService.cs" />
<Compile Include="Implementation\UnitTestFileService.cs" />
<Compile Include="Implementation\UnitTestSaveAllFilesCommand.cs" />
<Compile Include="Implementation\UnitTestTaskService.cs" />
<Compile Include="Implementation\UnitTestWorkbench.cs" />
<Compile Include="Interfaces\IUnitTestProcessRunner.cs" />
<Compile Include="Interfaces\UnitTestProcessRunner.cs" />
<Compile Include="TestRunner\ITestRunner.cs" />
<Compile Include="TestRunner\TestResultsMonitor.cs" />
<Compile Include="TestRunner\TestResultsReader.cs" />
<Compile Include="TestRunner\TestResultTask.cs" />
<Compile Include="TestFramework\IRegisteredTestFrameworks.cs" />
<Compile Include="TestFramework\ITestFramework.cs" />
<Compile Include="TestFramework\ITestFrameworkFactory.cs" />
<Compile Include="Interfaces\IBuildOptions.cs" />
<Compile Include="Interfaces\IBuildProjectFactory.cs" />
<Compile Include="Interfaces\IFileSystem.cs" />
<Compile Include="Interfaces\IRegisteredTestFrameworks.cs" />
<Compile Include="Interfaces\IRunTestCommandContext.cs" />
<Compile Include="Interfaces\ITestFramework.cs" />
<Compile Include="Interfaces\ITestFrameworkFactory.cs" />
<Compile Include="Interfaces\ITestResultsMonitor.cs" />
<Compile Include="Interfaces\ITestRunner.cs" />
<Compile Include="Interfaces\ITestTreeView.cs" />
<Compile Include="Interfaces\IUnitTestDebuggerService.cs" />
<Compile Include="Interfaces\IUnitTestProcessRunner.cs" />
<Compile Include="Interfaces\IUnitTestSaveAllFilesCommand.cs" />
<Compile Include="Interfaces\IUnitTestsPad.cs" />
<Compile Include="Interfaces\IUnitTestTaskService.cs" />
<Compile Include="Interfaces\IUnitTestWorkbench.cs" />
<Compile Include="Interfaces\UnitTestBuildOptions.cs" />
<Compile Include="Model\TestResult.cs" />
<Compile Include="Pad\EmptyUnitTestsPad.cs" />
<Compile Include="Pad\IUnitTestsPad.cs" />
<Compile Include="Pad\UnitTestsPad.cs" />
<Compile Include="Interfaces\UnitTestBuildProjectFactory.cs" />
<Compile Include="Interfaces\UnitTestDebuggerService.cs" />
<Compile Include="Interfaces\UnitTestFileService.cs" />
<Compile Include="Interfaces\UnitTestSaveAllFilesCommand.cs" />
<Compile Include="Interfaces\UnitTestTaskService.cs" />
<Compile Include="Interfaces\UnitTestWorkbench.cs" />
<Compile Include="Model\TestClass.cs" />
<Compile Include="Model\TestMember.cs" />
<Compile Include="Model\TestProject.cs" />
<Compile Include="Model\TestSolution.cs" />
<Compile Include="MultipleProjectBuildable.cs" />
<Compile Include="Nodes\ClassUnitTestNode.cs" />
<Compile Include="Nodes\MemberUnitTestNode.cs" />
<Compile Include="Nodes\NamespaceUnitTestNode.cs" />
<Compile Include="Nodes\ProjectUnitTestNode.cs" />
<Compile Include="Nodes\RootUnitTestNode.cs" />
<Compile Include="Nodes\UnitTestBaseNode.cs" />
<Compile Include="TestFramework\ITestResultsMonitor.cs" />
<Compile Include="TestFramework\RegisteredTestFrameworks.cs" />
<Compile Include="TestFramework\TestFrameworkDescriptor.cs" />
<Compile Include="TestFramework\TestFrameworkDoozer.cs" />
<Compile Include="TestFramework\TestFrameworkFactory.cs" />
<Compile Include="TestFramework\TestService.cs" />
<Compile Include="TreeView\ClassUnitTestNode.cs" />
<Compile Include="TreeView\ITestTreeView.cs" />
<Compile Include="TreeView\MemberUnitTestNode.cs" />
<Compile Include="TreeView\NamespaceUnitTestNode.cs" />
<Compile Include="TreeView\ProjectUnitTestNode.cs" />
<Compile Include="TreeView\RootUnitTestNode.cs" />
<Compile Include="TreeView\TestTreeView.cs" />
<Compile Include="TreeView\UnitTestBaseNode.cs" />
<Compile Include="NUnit\NUnitConsoleApplication.cs" />
<Compile Include="NUnit\NUnitTestDebugger.cs" />
<Compile Include="NUnit\NUnitTestFramework.cs" />
<Compile Include="NUnit\NUnitTestResult.cs" />
<Compile Include="NUnit\NUnitTestRunner.cs" />
<Compile Include="Options\UnitTestingOptions.cs" />
<Compile Include="Options\UnitTestingOptionsPanel.xaml.cs">
<DependentUpon>UnitTestingOptionsPanel.xaml</DependentUpon>
</Compile>
<Compile Include="Resources\Images.cs" />
<Compile Include="RunTestCommandContext.cs" />
<Compile Include="Service\MessageReceivedEventArgs.cs" />
<Compile Include="Service\RegisteredTestFrameworks.cs" />
<Compile Include="Service\RunningTestsCondition.cs" />
<Compile Include="Service\SelectedTests.cs" />
<Compile Include="Service\TestableCondition.cs" />
<Compile Include="Service\TestDebuggerBase.cs" />
<Compile Include="Service\TestFinishedEventArgs.cs" />
<Compile Include="Service\TestFrameworkDescriptor.cs" />
<Compile Include="Service\TestFrameworkDoozer.cs" />
<Compile Include="Service\TestFrameworkFactory.cs" />
<Compile Include="Service\TestProcessRunnerBase.cs" />
<Compile Include="Service\TestProcessRunnerBaseContext.cs" />
<Compile Include="Service\TestResult.cs" />
<Compile Include="Service\TestRunnerBase.cs" />
<Compile Include="Service\TestService.cs" />
<Compile Include="TestResultsMonitor.cs" />
<Compile Include="TestResultsReader.cs" />
<Compile Include="TestResultTask.cs" />
<Compile Include="TestTreeView.cs" />
<Compile Include="UnitTestingOptions.cs" />
<Compile Include="UnitTestProcessRunner.cs" />
<Compile Include="TestRunner\MessageReceivedEventArgs.cs" />
<Compile Include="TestRunner\SelectedTests.cs" />
<Compile Include="TestRunner\TestDebuggerBase.cs" />
<Compile Include="TestRunner\TestFinishedEventArgs.cs" />
<Compile Include="TestRunner\TestProcessRunnerBase.cs" />
<Compile Include="TestRunner\TestProcessRunnerBaseContext.cs" />
<Compile Include="TestRunner\TestRunnerBase.cs" />
<None Include="PostBuildEvent.proj" />
<None Include="UnitTesting.addin">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
@ -191,16 +191,17 @@ @@ -191,16 +191,17 @@
</ItemGroup>
<ItemGroup>
<Folder Include="Commands" />
<Folder Include="Gui" />
<Folder Include="Implementation" />
<Folder Include="TestFramework" />
<Folder Include="Pad" />
<Folder Include="Interfaces" />
<Folder Include="Model" />
<Folder Include="Options" />
<Folder Include="NUnit" />
<Folder Include="Service" />
<Folder Include="Nodes" />
<Folder Include="TestRunner" />
<Folder Include="TreeView" />
</ItemGroup>
<ItemGroup>
<Page Include="Gui\UnitTestingOptionsPanel.xaml" />
<Page Include="Options\UnitTestingOptionsPanel.xaml" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
<Import Project="PostBuildEvent.proj" />

Loading…
Cancel
Save