diff --git a/NSpec/NSpec.csproj b/NSpec/NSpec.csproj index 4b4d3ceb..ac296225 100644 --- a/NSpec/NSpec.csproj +++ b/NSpec/NSpec.csproj @@ -34,9 +34,14 @@ 4 - - False - ..\libs\nunit.framework.dll + + ..\packages\NUnit.2.5.7.10213\lib\nunit.framework.dll + + + ..\packages\NUnit.2.5.7.10213\lib\nunit.mocks.dll + + + ..\packages\NUnit.2.5.7.10213\lib\pnunit.framework.dll @@ -85,6 +90,9 @@ Always + + + + --> \ No newline at end of file diff --git a/NSpecSpecs/describe_output.cs b/NSpecSpecs/describe_output.cs index 771c4005..f2888884 100644 --- a/NSpecSpecs/describe_output.cs +++ b/NSpecSpecs/describe_output.cs @@ -60,7 +60,7 @@ public string Run(string tag) var output = process.StandardOutput.ReadToEnd(); - return output.RegexReplace("in .*SampleSpecs", "in SampleSpecs"); ; + return output.RegexReplace("in .*SampleSpecs", "in SampleSpecs").Replace("\r",""); } [Test] diff --git a/NSpecSpecs/packages.config b/NSpecSpecs/packages.config index 18527e43..cd7322a7 100644 --- a/NSpecSpecs/packages.config +++ b/NSpecSpecs/packages.config @@ -1,4 +1,5 @@ - - - + + + + \ No newline at end of file diff --git a/Rakefile b/Rakefile index 16d95045..82edb21f 100644 --- a/Rakefile +++ b/Rakefile @@ -27,7 +27,7 @@ end desc 'run specs' task :spec => :build do - sh '"C:\program files (x86)\nunit 2.5.9\bin\net-2.0\nunit-console-x86.exe" /nologo NSpecSpecs/bin/Debug/NSpecSpecs.dll' + sh '"libs\NUnit.Runners.2.6.0.12051\tools\nunit-console-x86.exe" /nologo NSpecSpecs/bin/Debug/NSpecSpecs.dll' end desc 'run SampleSpecs with NSpecRunner. you can supply a single spec like so -> rake samples[spec_name]' @@ -278,4 +278,4 @@ def update_version file, version_lines newlines = (File.read file).split("\n")[0..-3] + version_lines File.open(file, 'w') {|f| f.write(newlines.join("\n"))} -end \ No newline at end of file +end diff --git a/libs/NUnit.Runners.2.6.0.12051/Logo.ico b/libs/NUnit.Runners.2.6.0.12051/Logo.ico new file mode 100644 index 00000000..13c4ff9d Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/Logo.ico differ diff --git a/libs/NUnit.Runners.2.6.0.12051/license.txt b/libs/NUnit.Runners.2.6.0.12051/license.txt new file mode 100644 index 00000000..724e4652 --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/license.txt @@ -0,0 +1,15 @@ +Copyright © 2002-2012 Charlie Poole +Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov +Copyright © 2000-2002 Philip A. Craig + +This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required. + +Portions Copyright © 2002-2012 Charlie Poole or Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright © 2000-2002 Philip A. Craig + +2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source distribution. diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/agent.conf b/libs/NUnit.Runners.2.6.0.12051/tools/agent.conf new file mode 100644 index 00000000..b4cf5509 --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/agent.conf @@ -0,0 +1,4 @@ + + 8080 + . + \ No newline at end of file diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/agent.log.conf b/libs/NUnit.Runners.2.6.0.12051/tools/agent.log.conf new file mode 100644 index 00000000..6a9ced8b --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/agent.log.conf @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/launcher.log.conf b/libs/NUnit.Runners.2.6.0.12051/tools/launcher.log.conf new file mode 100644 index 00000000..6a9ced8b --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/launcher.log.conf @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Failure.jpg b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Failure.jpg new file mode 100644 index 00000000..c245548b Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Failure.jpg differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Ignored.jpg b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Ignored.jpg new file mode 100644 index 00000000..0549b705 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Ignored.jpg differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Inconclusive.jpg b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Inconclusive.jpg new file mode 100644 index 00000000..8d36153c Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Inconclusive.jpg differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Skipped.jpg b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Skipped.jpg new file mode 100644 index 00000000..3d84255c Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Skipped.jpg differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Success.jpg b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Success.jpg new file mode 100644 index 00000000..15ec1b7f Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Circles/Success.jpg differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Failure.jpg b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Failure.jpg new file mode 100644 index 00000000..658905fd Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Failure.jpg differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Ignored.jpg b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Ignored.jpg new file mode 100644 index 00000000..95b7fdbd Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Ignored.jpg differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Inconclusive.jpg b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Inconclusive.jpg new file mode 100644 index 00000000..32a0ff72 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Inconclusive.jpg differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Skipped.jpg b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Skipped.jpg new file mode 100644 index 00000000..3d84255c Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Skipped.jpg differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Success.jpg b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Success.jpg new file mode 100644 index 00000000..3d8e7609 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Classic/Success.jpg differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Failure.png b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Failure.png new file mode 100644 index 00000000..2e400b27 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Failure.png differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Ignored.png b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Ignored.png new file mode 100644 index 00000000..05715cbb Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Ignored.png differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Inconclusive.png b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Inconclusive.png new file mode 100644 index 00000000..4807b7ce Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Inconclusive.png differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Skipped.png b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Skipped.png new file mode 100644 index 00000000..7c9fc64e Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Skipped.png differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Success.png b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Success.png new file mode 100644 index 00000000..2a301508 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Default/Success.png differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Failure.png b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Failure.png new file mode 100644 index 00000000..ba03e848 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Failure.png differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Ignored.png b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Ignored.png new file mode 100644 index 00000000..9271d6e7 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Ignored.png differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Inconclusive.png b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Inconclusive.png new file mode 100644 index 00000000..76219b5c Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Inconclusive.png differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/SeriousWarning.png b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/SeriousWarning.png new file mode 100644 index 00000000..6a578cca Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/SeriousWarning.png differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Skipped.png b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Skipped.png new file mode 100644 index 00000000..7c9fc64e Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Skipped.png differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Success.png b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Success.png new file mode 100644 index 00000000..346fe8f9 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/Images/Tree/Visual Studio/Success.png differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/log4net.dll b/libs/NUnit.Runners.2.6.0.12051/tools/lib/log4net.dll new file mode 100644 index 00000000..20a2e1c4 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/log4net.dll differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit-console-runner.dll b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit-console-runner.dll new file mode 100644 index 00000000..b0e611af Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit-console-runner.dll differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit-gui-runner.dll b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit-gui-runner.dll new file mode 100644 index 00000000..ebff05eb Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit-gui-runner.dll differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.core.dll b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.core.dll new file mode 100644 index 00000000..5f748bec Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.core.dll differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.core.interfaces.dll b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.core.interfaces.dll new file mode 100644 index 00000000..72b9486d Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.core.interfaces.dll differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.uiexception.dll b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.uiexception.dll new file mode 100644 index 00000000..9129c039 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.uiexception.dll differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.uikit.dll b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.uikit.dll new file mode 100644 index 00000000..76c1af4f Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.uikit.dll differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.util.dll b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.util.dll new file mode 100644 index 00000000..28d603c6 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/lib/nunit.util.dll differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit-agent-x86.exe b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-agent-x86.exe new file mode 100644 index 00000000..aa2b8e9e Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-agent-x86.exe differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit-agent-x86.exe.config b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-agent-x86.exe.config new file mode 100644 index 00000000..43adb3b8 --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-agent-x86.exe.config @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit-agent.exe b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-agent.exe new file mode 100644 index 00000000..3068f415 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-agent.exe differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit-agent.exe.config b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-agent.exe.config new file mode 100644 index 00000000..43adb3b8 --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-agent.exe.config @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit-console-x86.exe b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-console-x86.exe new file mode 100644 index 00000000..1a641e9e Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-console-x86.exe differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit-console-x86.exe.config b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-console-x86.exe.config new file mode 100644 index 00000000..3a2afb33 --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-console-x86.exe.config @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit-console.exe b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-console.exe new file mode 100644 index 00000000..0735eef6 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-console.exe differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit-console.exe.config b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-console.exe.config new file mode 100644 index 00000000..3a2afb33 --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-console.exe.config @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit-editor.exe b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-editor.exe new file mode 100644 index 00000000..7e0c55fc Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-editor.exe differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit-x86.exe b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-x86.exe new file mode 100644 index 00000000..d90b9f55 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-x86.exe differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit-x86.exe.config b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-x86.exe.config new file mode 100644 index 00000000..7bd69c56 --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/nunit-x86.exe.config @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit.exe b/libs/NUnit.Runners.2.6.0.12051/tools/nunit.exe new file mode 100644 index 00000000..110b626b Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/nunit.exe differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit.exe.config b/libs/NUnit.Runners.2.6.0.12051/tools/nunit.exe.config new file mode 100644 index 00000000..7bd69c56 --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/nunit.exe.config @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/nunit.framework.dll b/libs/NUnit.Runners.2.6.0.12051/tools/nunit.framework.dll new file mode 100644 index 00000000..eaea9eed Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/nunit.framework.dll differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/pnunit-agent.exe b/libs/NUnit.Runners.2.6.0.12051/tools/pnunit-agent.exe new file mode 100644 index 00000000..10bc00ca Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/pnunit-agent.exe differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/pnunit-agent.exe.config b/libs/NUnit.Runners.2.6.0.12051/tools/pnunit-agent.exe.config new file mode 100644 index 00000000..2da8776d --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/pnunit-agent.exe.config @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/pnunit-launcher.exe b/libs/NUnit.Runners.2.6.0.12051/tools/pnunit-launcher.exe new file mode 100644 index 00000000..3f09f05b Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/pnunit-launcher.exe differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/pnunit-launcher.exe.config b/libs/NUnit.Runners.2.6.0.12051/tools/pnunit-launcher.exe.config new file mode 100644 index 00000000..2da8776d --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/pnunit-launcher.exe.config @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/pnunit.framework.dll b/libs/NUnit.Runners.2.6.0.12051/tools/pnunit.framework.dll new file mode 100644 index 00000000..44bf6ad9 Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/pnunit.framework.dll differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/pnunit.tests.dll b/libs/NUnit.Runners.2.6.0.12051/tools/pnunit.tests.dll new file mode 100644 index 00000000..9e4f4fdb Binary files /dev/null and b/libs/NUnit.Runners.2.6.0.12051/tools/pnunit.tests.dll differ diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/runpnunit.bat b/libs/NUnit.Runners.2.6.0.12051/tools/runpnunit.bat new file mode 100644 index 00000000..f41cb5a6 --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/runpnunit.bat @@ -0,0 +1,3 @@ +start pnunit-agent 8080 . +start pnunit-agent 8081 . +pnunit-launcher test.conf diff --git a/libs/NUnit.Runners.2.6.0.12051/tools/test.conf b/libs/NUnit.Runners.2.6.0.12051/tools/test.conf new file mode 100644 index 00000000..63cc7bd4 --- /dev/null +++ b/libs/NUnit.Runners.2.6.0.12051/tools/test.conf @@ -0,0 +1,82 @@ + + + + + + + + + + + Testing + + + Testing + pnunit.tests.dll + TestLibraries.Testing.EqualTo19 + $agent_host:8080 + + + + + + + Parallel_Tests + + + ParallelTest_A_Test + pnunit.tests.dll + TestLibraries.ParallelExample.ParallelTest_A + $agent_host:8080 + + + 2 + + + + ParallelTest_B_Test + pnunit.tests.dll + TestLibraries.ParallelExample.ParallelTest_B + $agent_host:8080 + + 1 + + + + + + + + + Parallel_Barriers + + + Parallel_Barriers_TestA + pnunit.tests.dll + TestLibraries.ParallelExampleWithBarriers.ParallelTestWithBarriersA + $agent_host:8080 + + + + START_BARRIER + WAIT_BARRIER + + + + Parallel_Barriers_TestB + pnunit.tests.dll + TestLibraries.ParallelExampleWithBarriers.ParallelTestWithBarriersB + $agent_host:8081 + + + + START_BARRIER + WAIT_BARRIER + + + + + + + + \ No newline at end of file diff --git a/libs/nunit.framework.dll b/libs/nunit.framework.dll deleted file mode 100644 index 639dbb0d..00000000 Binary files a/libs/nunit.framework.dll and /dev/null differ