http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.2.6.3/license.txt ---------------------------------------------------------------------- diff --git a/lib/NUnit.2.6.3/license.txt b/lib/NUnit.2.6.3/license.txt deleted file mode 100644 index b12903a..0000000 --- a/lib/NUnit.2.6.3/license.txt +++ /dev/null @@ -1,15 +0,0 @@ -Copyright � 2002-2013 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-2013 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.
http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/Logo.ico ---------------------------------------------------------------------- diff --git a/lib/NUnit.org/NUnit/2.5.9/Logo.ico b/lib/NUnit.org/NUnit/2.5.9/Logo.ico deleted file mode 100644 index 13c4ff9..0000000 Binary files a/lib/NUnit.org/NUnit/2.5.9/Logo.ico and /dev/null differ http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/NUnitFitTests.html ---------------------------------------------------------------------- diff --git a/lib/NUnit.org/NUnit/2.5.9/NUnitFitTests.html b/lib/NUnit.org/NUnit/2.5.9/NUnitFitTests.html deleted file mode 100644 index ca5cd4f..0000000 --- a/lib/NUnit.org/NUnit/2.5.9/NUnitFitTests.html +++ /dev/null @@ -1,277 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<html> - <body> - <h1>NUnit Acceptance Tests</h1> - <p> - Developers love self-referential programs! Hence, NUnit has always run all it's - own tests, even those that are not really unit tests. - <p>Now, beginning with NUnit 2.4, NUnit has top-level tests using Ward Cunningham's - FIT framework. At this time, the tests are pretty rudimentary, but it's a start - and it's a framework for doing more. - <h2>Running the Tests</h2> - <p>Open a console or shell window and navigate to the NUnit bin directory, which - contains this file. To run the test under Microsoft .Net, enter the command - <pre> runFile NUnitFitTests.html TestResults.html .</pre> - To run it under Mono, enter - <pre> mono runFile.exe NUnitFitTests.html TestResults.html .</pre> - Note the space and dot at the end of each command. The results of your test - will be in TestResults.html in the same directory. - <h2>Platform and CLR Version</h2> - <table BORDER cellSpacing="0" cellPadding="5"> - <tr> - <td colspan="2">NUnit.Fixtures.PlatformInfo</td> - </tr> - </table> - <h2>Verify Unit Tests</h2> - <p> - Load and run the NUnit unit tests, verifying that the results are as expected. - When these tests are run on different platforms, different numbers of tests may - be skipped, so the values for Skipped and Run tests are informational only. - <p> - The number of tests in each assembly should be constant across all platforms - - any discrepancy usually means that one of the test source files was not - compiled on the platform. There should be no failures and no tests ignored. - <p><b>Note:</b> - At the moment, the nunit.extensions.tests assembly is failing because the - fixture doesn't initialize addins in the test domain. - <p> - <table BORDER cellSpacing="0" cellPadding="5"> - <tr> - <td colspan="6">NUnit.Fixtures.AssemblyRunner</td> - </tr> - <tr> - <td>Assembly</td> - <td>Tests()</td> - <td>Run()</td> - <td>Skipped()</td> - <td>Ignored()</td> - <td>Failures()</td> - </tr> - <tr> - <td>nunit.framework.tests.dll</td> - <td>397</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit.core.tests.dll</td> - <td>355</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit.util.tests.dll</td> - <td>238</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit.mocks.tests.dll</td> - <td>43</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit.extensions.tests.dll</td> - <td>5</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit-console.tests.dll</td> - <td>40</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit.uikit.tests.dll</td> - <td>34</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit-gui.tests.dll</td> - <td>15</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit.fixtures.tests.dll</td> - <td>6</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - </table> - <h2>Code Snippet Tests</h2> - <p> - These tests create a test assembly from a snippet of code and then load and run - the tests that it contains, verifying that the structure of the loaded tests is - as expected and that the number of tests run, skipped, ignored or failed is - correct. - <p> - <table BORDER cellSpacing="0" cellPadding="5"> - <tr> - <td colspan="6">NUnit.Fixtures.SnippetRunner</td> - </tr> - <tr> - <td>Code</td> - <td>Tree()</td> - <td>Run()</td> - <td>Skipped()</td> - <td>Ignored()</td> - <td>Failures()</td> - </tr> - <tr> - <td><pre>public class TestClass -{ -}</pre> - </td> - <td>EMPTY</td> - <td>0</td> - <td>0</td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td><pre>using NUnit.Framework; - -[TestFixture] -public class TestClass -{ -}</pre> - </td> - <td>TestClass</td> - <td>0</td> - <td>0</td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td><pre>using NUnit.Framework; - -[TestFixture] -public class TestClass -{ - [Test] - public void T1() { } - [Test] - public void T2() { } - [Test] - public void T3() { } -}</pre> - </td> - <td><pre>TestClass ->T1 ->T2 ->T3</pre> - </td> - <td>3</td> - <td>0</td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td><pre>using NUnit.Framework; - -[TestFixture] -public class TestClass1 -{ - [Test] - public void T1() { } -} - -[TestFixture] -public class TestClass2 -{ - [Test] - public void T2() { } - [Test] - public void T3() { } -}</pre> - </td> - <td><pre>TestClass1 ->T1 -TestClass2 ->T2 ->T3</pre> - </td> - <td>3</td> - <td>0</td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td><pre>using NUnit.Framework; - -[TestFixture] -public class TestClass -{ - [Test] - public void T1() { } - [Test, Ignore] - public void T2() { } - [Test] - public void T3() { } -}</pre> - </td> - <td><pre>TestClass ->T1 ->T2 ->T3</pre> - </td> - <td>2</td> - <td>0</td> - <td>1</td> - <td>0</td> - </tr> - <tr> - <td><pre>using NUnit.Framework; - -[TestFixture] -public class TestClass -{ - [Test] - public void T1() { } - [Test, Explicit] - public void T2() { } - [Test] - public void T3() { } -}</pre> - </td> - <td><pre>TestClass ->T1 ->T2 ->T3</pre> - </td> - <td>2</td> - <td>1</td> - <td>0</td> - <td>0</td> - </tr> - </table> - <h2>Summary Information</h2> - <table BORDER cellSpacing="0" cellPadding="5"> - <tr> - <td colspan="2">fit.Summary</td> - </tr> - </table> - </body> -</html> http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/NUnitFitTests.html ---------------------------------------------------------------------- diff --git a/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/NUnitFitTests.html b/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/NUnitFitTests.html deleted file mode 100644 index ca5cd4f..0000000 --- a/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/NUnitFitTests.html +++ /dev/null @@ -1,277 +0,0 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> -<html> - <body> - <h1>NUnit Acceptance Tests</h1> - <p> - Developers love self-referential programs! Hence, NUnit has always run all it's - own tests, even those that are not really unit tests. - <p>Now, beginning with NUnit 2.4, NUnit has top-level tests using Ward Cunningham's - FIT framework. At this time, the tests are pretty rudimentary, but it's a start - and it's a framework for doing more. - <h2>Running the Tests</h2> - <p>Open a console or shell window and navigate to the NUnit bin directory, which - contains this file. To run the test under Microsoft .Net, enter the command - <pre> runFile NUnitFitTests.html TestResults.html .</pre> - To run it under Mono, enter - <pre> mono runFile.exe NUnitFitTests.html TestResults.html .</pre> - Note the space and dot at the end of each command. The results of your test - will be in TestResults.html in the same directory. - <h2>Platform and CLR Version</h2> - <table BORDER cellSpacing="0" cellPadding="5"> - <tr> - <td colspan="2">NUnit.Fixtures.PlatformInfo</td> - </tr> - </table> - <h2>Verify Unit Tests</h2> - <p> - Load and run the NUnit unit tests, verifying that the results are as expected. - When these tests are run on different platforms, different numbers of tests may - be skipped, so the values for Skipped and Run tests are informational only. - <p> - The number of tests in each assembly should be constant across all platforms - - any discrepancy usually means that one of the test source files was not - compiled on the platform. There should be no failures and no tests ignored. - <p><b>Note:</b> - At the moment, the nunit.extensions.tests assembly is failing because the - fixture doesn't initialize addins in the test domain. - <p> - <table BORDER cellSpacing="0" cellPadding="5"> - <tr> - <td colspan="6">NUnit.Fixtures.AssemblyRunner</td> - </tr> - <tr> - <td>Assembly</td> - <td>Tests()</td> - <td>Run()</td> - <td>Skipped()</td> - <td>Ignored()</td> - <td>Failures()</td> - </tr> - <tr> - <td>nunit.framework.tests.dll</td> - <td>397</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit.core.tests.dll</td> - <td>355</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit.util.tests.dll</td> - <td>238</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit.mocks.tests.dll</td> - <td>43</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit.extensions.tests.dll</td> - <td>5</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit-console.tests.dll</td> - <td>40</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit.uikit.tests.dll</td> - <td>34</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit-gui.tests.dll</td> - <td>15</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td>nunit.fixtures.tests.dll</td> - <td>6</td> - <td> </td> - <td> </td> - <td>0</td> - <td>0</td> - </tr> - </table> - <h2>Code Snippet Tests</h2> - <p> - These tests create a test assembly from a snippet of code and then load and run - the tests that it contains, verifying that the structure of the loaded tests is - as expected and that the number of tests run, skipped, ignored or failed is - correct. - <p> - <table BORDER cellSpacing="0" cellPadding="5"> - <tr> - <td colspan="6">NUnit.Fixtures.SnippetRunner</td> - </tr> - <tr> - <td>Code</td> - <td>Tree()</td> - <td>Run()</td> - <td>Skipped()</td> - <td>Ignored()</td> - <td>Failures()</td> - </tr> - <tr> - <td><pre>public class TestClass -{ -}</pre> - </td> - <td>EMPTY</td> - <td>0</td> - <td>0</td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td><pre>using NUnit.Framework; - -[TestFixture] -public class TestClass -{ -}</pre> - </td> - <td>TestClass</td> - <td>0</td> - <td>0</td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td><pre>using NUnit.Framework; - -[TestFixture] -public class TestClass -{ - [Test] - public void T1() { } - [Test] - public void T2() { } - [Test] - public void T3() { } -}</pre> - </td> - <td><pre>TestClass ->T1 ->T2 ->T3</pre> - </td> - <td>3</td> - <td>0</td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td><pre>using NUnit.Framework; - -[TestFixture] -public class TestClass1 -{ - [Test] - public void T1() { } -} - -[TestFixture] -public class TestClass2 -{ - [Test] - public void T2() { } - [Test] - public void T3() { } -}</pre> - </td> - <td><pre>TestClass1 ->T1 -TestClass2 ->T2 ->T3</pre> - </td> - <td>3</td> - <td>0</td> - <td>0</td> - <td>0</td> - </tr> - <tr> - <td><pre>using NUnit.Framework; - -[TestFixture] -public class TestClass -{ - [Test] - public void T1() { } - [Test, Ignore] - public void T2() { } - [Test] - public void T3() { } -}</pre> - </td> - <td><pre>TestClass ->T1 ->T2 ->T3</pre> - </td> - <td>2</td> - <td>0</td> - <td>1</td> - <td>0</td> - </tr> - <tr> - <td><pre>using NUnit.Framework; - -[TestFixture] -public class TestClass -{ - [Test] - public void T1() { } - [Test, Explicit] - public void T2() { } - [Test] - public void T3() { } -}</pre> - </td> - <td><pre>TestClass ->T1 ->T2 ->T3</pre> - </td> - <td>2</td> - <td>1</td> - <td>0</td> - <td>0</td> - </tr> - </table> - <h2>Summary Information</h2> - <table BORDER cellSpacing="0" cellPadding="5"> - <tr> - <td colspan="2">fit.Summary</td> - </tr> - </table> - </body> -</html> http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/NUnitTests.config ---------------------------------------------------------------------- diff --git a/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/NUnitTests.config b/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/NUnitTests.config deleted file mode 100644 index fb15771..0000000 --- a/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/NUnitTests.config +++ /dev/null @@ -1,85 +0,0 @@ -<?xml version="1.0" encoding="utf-8" ?> -<configuration> -<!-- - This is the configuration file for the NUnitTests.nunit test project. You may - need to create a similar configuration file for your own test project. - --> - -<!-- - The <NUnit> section is only needed if you want to use a non-default value - for any of the settings. It is commented out below. If you are going to use - it, you must deifne the NUnit section group and the sections you need. - - The syntax shown here works for most runtimes. If NUnit fails at startup, you - can try specifying the name of the assembly containing the NameValueSectionHandler: - - <section name="TestCaseBuilder" type="System.Configuration.NameValueSectionHandler, System" /> - - If that fails, try the fully qualified name of the assembly: - - <section name="TestCaseBuilder" type="System.Configuration.NameValueSectionHandler, System, - Version=2.0.50727.832, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> - - Unfortunately, this last approach makes your config file non-portable across runtimes. - --> - -<!-- - <configSections> - <sectionGroup name="NUnit"> - <section name="TestCaseBuilder" type="System.Configuration.NameValueSectionHandler"/> - <section name="TestRunner" type="System.Configuration.NameValueSectionHandler"/> - </sectionGroup> - </configSections> - --> - - <appSettings> - <!-- User application and configured property settings go here.--> - <!-- Example: <add key="settingName" value="settingValue"/> --> - <add key="test.setting" value="54321" /> - </appSettings> - -<!-- Sample NUnit section group showing all default values --> -<!-- - <NUnit> - <TestCaseBuilder> - <add key="OldStyleTestCases" value="false" /> - </TestCaseBuilder> - <TestRunner> - <add key="ApartmentState" value="MTA" /> - <add key="ThreadPriority" value="Normal" /> - <add key="DefaultLogThreshold" value="Info" /> - </TestRunner> - </NUnit> ---> - - <!-- - The following <runtime> section allows running nunit tests under - .NET 1.0 by redirecting assemblies. The appliesTo attribute - causes the section to be ignored except under .NET 1.0. - --> - <runtime> - <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" - appliesTo="v1.0.3705"> - <dependentAssembly> - <assemblyIdentity name="System" publicKeyToken="b77a5c561934e089" culture="" /> - <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" /> - </dependentAssembly> - <dependentAssembly> - <assemblyIdentity name="System.Data" publicKeyToken="b77a5c561934e089" culture="" /> - <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" /> - </dependentAssembly> - <dependentAssembly> - <assemblyIdentity name="System.Drawing" publicKeyToken="b03f5f7f11d50a3a" culture="" /> - <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" /> - </dependentAssembly> - <dependentAssembly> - <assemblyIdentity name="System.Windows.Forms" publicKeyToken="b77a5c561934e089" culture="" /> - <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" /> - </dependentAssembly> - <dependentAssembly> - <assemblyIdentity name="System.Xml" publicKeyToken="b77a5c561934e089" culture="" /> - <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" /> - </dependentAssembly> - </assemblyBinding> - </runtime> -</configuration> http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/NUnitTests.nunit ---------------------------------------------------------------------- diff --git a/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/NUnitTests.nunit b/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/NUnitTests.nunit deleted file mode 100644 index 55e6ea2..0000000 --- a/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/NUnitTests.nunit +++ /dev/null @@ -1,11 +0,0 @@ -<NUnitProject> - <Settings appbase="."/> - <Config name="Default" binpath="lib;tests;framework"> - <assembly path="tests/nunit.framework.tests.dll" /> - <assembly path="tests/nunit.core.tests.dll" /> - <assembly path="tests/nunit.util.tests.dll" /> - <assembly path="tests/nunit.mocks.tests.dll" /> - <assembly path="tests/nunit-console.tests.dll" /> - <assembly path="tests/nunit.fixtures.tests.dll" /> - </Config> -</NUnitProject> http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/agent.conf ---------------------------------------------------------------------- diff --git a/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/agent.conf b/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/agent.conf deleted file mode 100644 index ddbcd8e..0000000 --- a/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/agent.conf +++ /dev/null @@ -1,4 +0,0 @@ -<AgentConfig> - <Port>8080</Port> - <PathToAssemblies>.</PathToAssemblies> -</AgentConfig> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/agent.log.conf ---------------------------------------------------------------------- diff --git a/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/agent.log.conf b/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/agent.log.conf deleted file mode 100644 index 4bd90ca..0000000 --- a/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/agent.log.conf +++ /dev/null @@ -1,18 +0,0 @@ -<log4net> - <!-- A1 is set to be a ConsoleAppender --> - <appender name="A1" type="log4net.Appender.ConsoleAppender"> - - <!-- A1 uses PatternLayout --> - <layout type="log4net.Layout.PatternLayout"> - <!-- Print the date in ISO 8601 format --> - <conversionPattern value="%-5level %logger - %message%newline" /> - </layout> - </appender> - - <!-- Set root logger level to DEBUG and its only appender to A1 --> - <root> - <level value="DEBUG" /> - <appender-ref ref="A1" /> - </root> - -</log4net> http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/framework/nunit.framework.dll ---------------------------------------------------------------------- diff --git a/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/framework/nunit.framework.dll b/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/framework/nunit.framework.dll deleted file mode 100644 index 105213c..0000000 Binary files a/lib/NUnit.org/NUnit/2.5.9/bin/net-1.1/framework/nunit.framework.dll and /dev/null differ
