Browse Source

Updated NUnit to version 2.5.4

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@5688 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Matt Ward 15 years ago
parent
commit
7e70410614
  1. BIN
      src/Tools/NUnit/lib/nunit-console-runner.dll
  2. BIN
      src/Tools/NUnit/lib/nunit-gui-runner.dll
  3. BIN
      src/Tools/NUnit/lib/nunit.core.dll
  4. BIN
      src/Tools/NUnit/lib/nunit.core.interfaces.dll
  5. BIN
      src/Tools/NUnit/lib/nunit.fixtures.dll
  6. BIN
      src/Tools/NUnit/lib/nunit.uiexception.dll
  7. BIN
      src/Tools/NUnit/lib/nunit.uikit.dll
  8. BIN
      src/Tools/NUnit/lib/nunit.util.dll
  9. BIN
      src/Tools/NUnit/nunit-console-x86.exe
  10. 11
      src/Tools/NUnit/nunit-console-x86.exe.config
  11. BIN
      src/Tools/NUnit/nunit-console.exe
  12. 11
      src/Tools/NUnit/nunit-console.exe.config
  13. 8
      src/Tools/NUnit/nunit-console/AssemblyInfo.cs
  14. 5
      src/Tools/NUnit/nunit-console/ExtendedConsoleUi.cs
  15. BIN
      src/Tools/NUnit/nunit.framework.dll

BIN
src/Tools/NUnit/lib/nunit-console-runner.dll

Binary file not shown.

BIN
src/Tools/NUnit/lib/nunit-gui-runner.dll

Binary file not shown.

BIN
src/Tools/NUnit/lib/nunit.core.dll

Binary file not shown.

BIN
src/Tools/NUnit/lib/nunit.core.interfaces.dll

Binary file not shown.

BIN
src/Tools/NUnit/lib/nunit.fixtures.dll

Binary file not shown.

BIN
src/Tools/NUnit/lib/nunit.uiexception.dll

Binary file not shown.

BIN
src/Tools/NUnit/lib/nunit.uikit.dll

Binary file not shown.

BIN
src/Tools/NUnit/lib/nunit.util.dll

Binary file not shown.

BIN
src/Tools/NUnit/nunit-console-x86.exe

Binary file not shown.

11
src/Tools/NUnit/nunit-console-x86.exe.config

@ -1,16 +1,5 @@ @@ -1,16 +1,5 @@
<?xml version="1.0"?>
<configuration>
<!--
Application settings for NUnit-console.exe. Do NOT put settings
for use by your tests here.
-->
<appSettings>
<!--
Specify the location to be used by .NET for the cache
-->
<add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
</appSettings>
<!-- Set the level for tracing NUnit itself -->
<!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->
<system.diagnostics>

BIN
src/Tools/NUnit/nunit-console.exe

Binary file not shown.

11
src/Tools/NUnit/nunit-console.exe.config

@ -1,16 +1,5 @@ @@ -1,16 +1,5 @@
<?xml version="1.0"?>
<configuration>
<!--
Application settings for NUnit-console.exe. Do NOT put settings
for use by your tests here.
-->
<appSettings>
<!--
Specify the location to be used by .NET for the cache
-->
<add key="shadowfiles.path" value="%temp%\nunit20\ShadowCopyCache" />
</appSettings>
<!-- Set the level for tracing NUnit itself -->
<!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug -->
<system.diagnostics>

8
src/Tools/NUnit/nunit-console/AssemblyInfo.cs

@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
// ****************************************************************
// This is free software licensed under the NUnit license. You
// may obtain a copy of the license as well as information regarding
// copyright ownership at http://nunit.org/?p=license&r=2.4.
//
// copyright ownership at http://nunit.org.
// ****************************************************************
using System.Reflection;
@ -36,5 +36,5 @@ using System.Reflection; @@ -36,5 +36,5 @@ using System.Reflection;
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("2.5.3")]
[assembly: AssemblyInformationalVersion("2.5.3")]
[assembly: AssemblyVersion("2.5.4")]
[assembly: AssemblyInformationalVersion("2.5.4")]

5
src/Tools/NUnit/nunit-console/ExtendedConsoleUi.cs

@ -76,7 +76,7 @@ namespace NUnit.ConsoleRunner @@ -76,7 +76,7 @@ namespace NUnit.ConsoleRunner
? package.Settings["RuntimeFramework"]
: "Default");
TestRunner testRunner = TestRunnerFactory.MakeTestRunner(package);
TestRunner testRunner = new TestRunnerFactory().MakeTestRunner(package);
testRunner.Load(package);
try
@ -224,7 +224,8 @@ namespace NUnit.ConsoleRunner @@ -224,7 +224,8 @@ namespace NUnit.ConsoleRunner
}
else
{
package = new TestPackage(null, options.Parameters);
// TODO: Figure out a better way to handle "anonymous" packages
package = new TestPackage((string)options.Parameters[0], options.Parameters);
domainUsage = DomainUsage.Multiple;
}

BIN
src/Tools/NUnit/nunit.framework.dll

Binary file not shown.
Loading…
Cancel
Save