You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by sy...@apache.org on 2014/04/07 22:24:16 UTC

[10/19] nuget package restore

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/explicit.html
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/explicit.html b/lib/NUnit.org/NUnit/2.5.9/doc/explicit.html
deleted file mode 100644
index ea31502..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/explicit.html
+++ /dev/null
@@ -1,274 +0,0 @@
-<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-<!-- Standard Head Part -->
-<head>
-<title>NUnit - Explicit</title>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta http-equiv="Content-Language" content="en-US">
-<link rel="stylesheet" type="text/css" href="nunit.css">
-<link rel="shortcut icon" href="favicon.ico">
-</head>
-<!-- End Standard Head Part -->
-
-<body>
-
-<!-- Standard Header for NUnit.org -->
-<div id="header">
-  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
-  <div id="nav">
-    <a href="http://www.nunit.org">NUnit</a>
-    <a class="active" href="index.html">Documentation</a>
-  </div>
-</div>
-<!-- End of Header -->
-
-<div id="content">
-
-<script language="JavaScript" src="codeFuncs.js" ></script> <!-- Do it this way for IE -->
-
-<h3>ExplicitAttribute (NUnit 2.2)</h3>
-
-<p>The Explicit attribute causes a test or test fixture to be ignored unless it is 
-	explicitly selected for running. The test or fixture will be run if it is 
-	selected in the gui, if its name is specified on the console runner command 
-	line as the fixture to run or if it is included by use of a Category filter.</p>
-
-<p>An optional string argument may be used to give the reason for marking
-   the test Explicit.</p>
-
-<p>If a test or fixture with the Explicit attribute is encountered in the course of 
-	running tests, it is skipped unless it has been specifically selected by one
-	of the above means. The test does not affect the outcome of the run at all:
-	it is not considered as ignored and is not even counted in the total number
-	of tests. In the gui, the tree node for the test remains gray and the
-	status bar color is not affected.</p>
-	
-<blockquote><i><b>Note:</b> In versions of NUnit prior to 2.4, these tests were
-    shown as ignored.</i></blockquote>
-
-<h4>Test Fixture Syntax</h4>
-
-<div id="trace">
-</div>
-
-<div class="code cs">
-
-<div class="langFilter">
-	<a href="javascript:Show('DD1')" onmouseover="Show('DD1')"><img src="img/langFilter.gif" width="14" height="14" alt="Language Filter"></a>
-	<div id="DD1" class="dropdown" style="display: none;" onclick="Hide('DD1')">
-		<a href="javascript:ShowCS()">C#</a><br>
-		<a href="javascript:ShowVB()">VB</a><br>
-		<a href="javascript:ShowMC()">C++</a><br>
-		<a href="javascript:ShowJS()">J#</a><br>
-	</div>
-</div>
-
-<pre class="cs">namespace NUnit.Tests
-{
-  using System;
-  using NUnit.Framework;
-
-  [TestFixture, Explicit]
-  public class ExplicitTests
-  {
-    // ...
-  }
-}
-</pre>
-
-<pre class="vb">Imports System
-Imports Nunit.Framework
-
-Namespace Nunit.Tests
-
-  &lt;TestFixture(), Explicit()&gt;
-  Public Class ExplicitTests
-    &#39; ...
-  End Class
-End Namespace
-</pre>
-
-<pre class="mc">#using &lt;Nunit.Framework.dll&gt;
-using namespace System;
-using namespace NUnit::Framework;
-
-namespace NUnitTests
-{
-  [TestFixture]
-  [Explicit]
-  public __gc class ExplicitTests
-  {
-    // ...
-  };
-}
-
-#include &quot;cppsample.h&quot;
-
-namespace NUnitTests {
-  // ...
-}
-</pre>
-
-<pre class="js">package NUnit.Tests;
-
-import System.*;
-import NUnit.Framework.TestFixture;
-
-
-/** @attribute NUnit.Framework.TestFixture() */
-/** @attribute NUnit.Framework.Explicit() */
-public class ExplicitTests
-{
-  // ...
-}
-</pre>
-
-</div>
-
-<h4>Test Syntax</h4>
-
-<div class="code">
-
-<div class="langFilter">
-	<a href="javascript:Show('DD2')" onmouseover="Show('DD2')"><img src="img/langFilter.gif" width="14" height="14" alt="Language Filter"></a>
-	<div id="DD2" class="dropdown" style="display: none;" onclick="Hide('DD2')">
-		<a href="javascript:ShowCS()">C#</a><br>
-		<a href="javascript:ShowVB()">VB</a><br>
-		<a href="javascript:ShowMC()">C++</a><br>
-		<a href="javascript:ShowJS()">J#</a><br>
-	</div>
-</div>
-
-<pre class="cs">namespace NUnit.Tests
-{
-  using System;
-  using NUnit.Framework;
-
-  [TestFixture]
-  public class SuccessTests
-  {
-    [Test, Explicit]
-    public void ExplicitTest()
-    { /* ... */ }
-}
-</pre>
-
-<pre class="vb">Imports System
-Imports Nunit.Framework
-
-Namespace Nunit.Tests
-
-  &lt;TestFixture()&gt;
-  Public Class SuccessTests
-    &lt;Test(), Explicit()&gt; Public Sub ExplicitTest()
-      &#39; ...
-    End Sub
-  End Class
-End Namespace
-</pre>
-
-<pre class="mc">#using &lt;Nunit.Framework.dll&gt;
-using namespace System;
-using namespace NUnit::Framework;
-
-namespace NUnitTests
-{
-  [TestFixture]
-  public __gc class SuccessTests
-  {
-    [Test][Explicit] void ExplicitTest();
-  };
-}
-
-#include &quot;cppsample.h&quot;
-
-namespace NUnitTests {
-  // ...
-}
-</pre>
-
-<pre class="js">package NUnit.Tests;
-
-import System.*;
-import NUnit.Framework.TestFixture;
-
-
-/** @attribute NUnit.Framework.TestFixture() */
-public class SuccessTests
-{
-  /** @attribute NUnit.Framework.Test() */
-  /** @attribute NUnit.Framework.Explicit() */
-  public void ExplicitTest()
-  { /* ... */ }
-}
-</pre>
-
-</div>
-
-</div>
-
-<!-- Submenu -->
-<div id="subnav">
-<ul>
-<li><a href="index.html">NUnit 2.5.9</a></li>
-<ul>
-<li><a href="getStarted.html">Getting&nbsp;Started</a></li>
-<li><a href="assertions.html">Assertions</a></li>
-<li><a href="constraintModel.html">Constraints</a></li>
-<li><a href="attributes.html">Attributes</a></li>
-<ul>
-<li><a href="category.html">Category</a></li>
-<li><a href="combinatorial.html">Combinatorial</a></li>
-<li><a href="culture.html">Culture</a></li>
-<li><a href="datapoint.html">Datapoint(s)</a></li>
-<li><a href="description.html">Description</a></li>
-<li><a href="exception.html">Exception</a></li>
-<li id="current"><a href="explicit.html">Explicit</a></li>
-<li><a href="ignore.html">Ignore</a></li>
-<li><a href="maxtime.html">Maxtime</a></li>
-<li><a href="pairwise.html">Pairwise</a></li>
-<li><a href="platform.html">Platform</a></li>
-<li><a href="property.html">Property</a></li>
-<li><a href="random.html">Random</a></li>
-<li><a href="range.html">Range</a></li>
-<li><a href="repeat.html">Repeat</a></li>
-<li><a href="requiredAddin.html">RequiredAddin</a></li>
-<li><a href="requiresMTA.html">Requires&nbsp;MTA</a></li>
-<li><a href="requiresSTA.html">Requires&nbsp;STA</a></li>
-<li><a href="requiresThread.html">Requires&nbsp;Thread</a></li>
-<li><a href="sequential.html">Sequential</a></li>
-<li><a href="setCulture.html">SetCulture</a></li>
-<li><a href="setup.html">Setup</a></li>
-<li><a href="setupFixture.html">SetupFixture</a></li>
-<li><a href="suite.html">Suite</a></li>
-<li><a href="teardown.html">Teardown</a></li>
-<li><a href="test.html">Test</a></li>
-<li><a href="testCase.html">TestCase</a></li>
-<li><a href="testCaseSource.html">TestCaseSource</a></li>
-<li><a href="testFixture.html">TestFixture</a></li>
-<li><a href="fixtureSetup.html">TestFixtureSetUp</a></li>
-<li><a href="fixtureTeardown.html">TestFixtureTearDown</a></li>
-<li><a href="theory.html">Theory</a></li>
-<li><a href="timeout.html">Timeout</a></li>
-<li><a href="values.html">Values</a></li>
-<li><a href="valueSource.html">ValueSource</a></li>
-</ul>
-<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
-<li><a href="extensibility.html">Extensibility</a></li>
-<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
-<li><a href="samples.html">Samples</a></li>
-<li><a href="license.html">License</a></li>
-</ul>
-</ul>
-</div>
-<!-- End of Submenu -->
-
-
-<!-- Standard Footer for NUnit.org -->
-<div id="footer">
-  Copyright &copy; 2010 Charlie Poole. All Rights Reserved.
-</div>
-<!-- End of Footer -->
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/extensibility.html
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/extensibility.html b/lib/NUnit.org/NUnit/2.5.9/doc/extensibility.html
deleted file mode 100644
index 1cd80fa..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/extensibility.html
+++ /dev/null
@@ -1,78 +0,0 @@
-<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-<!-- Standard Head Part -->
-<head>
-<title>NUnit - Extensibility</title>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta http-equiv="Content-Language" content="en-US">
-<link rel="stylesheet" type="text/css" href="nunit.css">
-<link rel="shortcut icon" href="favicon.ico">
-</head>
-<!-- End Standard Head Part -->
-
-<body>
-
-<!-- Standard Header for NUnit.org -->
-<div id="header">
-  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
-  <div id="nav">
-    <a href="http://www.nunit.org">NUnit</a>
-    <a class="active" href="index.html">Documentation</a>
-  </div>
-</div>
-<!-- End of Header -->
-
-<div id="content">
-
-<h2>NUnit Extensibility</h2>
-
-<p>NUnit is designed to be extended in a number of ways.</p>
-
-<p>Extensions to the NUnit framework - the part of NUnit that is referenced
-by tests - usually take the form of 
-<a href="customConstraints.html">Custom Constraints</a>, written by users to 
-encapsulate tests that pertain to their specific projects.</p>
-
-<p>Extending the features found within NUnit itself depends on the use of
-<a href="nunitAddins.html">NUnit Addins</a>. 
-Currently, The Addin mechanism only supports extensions to the NUnit core -
-the part of NUnit that builds and executes test suites. However, the API that
-is used provides for the future ability to extend the client side of NUnit, 
-including the GUI.</p>
-
-
-</div>
-
-<!-- Submenu -->
-<div id="subnav">
-<ul>
-<li><a href="index.html">NUnit 2.5.9</a></li>
-<ul>
-<li><a href="getStarted.html">Getting&nbsp;Started</a></li>
-<li><a href="assertions.html">Assertions</a></li>
-<li><a href="constraintModel.html">Constraints</a></li>
-<li><a href="attributes.html">Attributes</a></li>
-<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
-<li id="current"><a href="extensibility.html">Extensibility</a></li>
-<ul>
-<li><a href="customConstraints.html">Custom&nbsp;Constraints</a></li>
-<li><a href="nunitAddins.html">NUnit&nbsp;Addins</a></li>
-<li><a href="extensionTips.html">Tips&nbsp;for&nbsp;Extenders</a></li>
-</ul>
-<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
-<li><a href="samples.html">Samples</a></li>
-<li><a href="license.html">License</a></li>
-</ul>
-</ul>
-</div>
-<!-- End of Submenu -->
-
-
-<!-- Standard Footer for NUnit.org -->
-<div id="footer">
-  Copyright &copy; 2010 Charlie Poole. All Rights Reserved.
-</div>
-<!-- End of Footer -->
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/extensionTips.html
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/extensionTips.html b/lib/NUnit.org/NUnit/2.5.9/doc/extensionTips.html
deleted file mode 100644
index 7b2f876..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/extensionTips.html
+++ /dev/null
@@ -1,95 +0,0 @@
-<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-<!-- Standard Head Part -->
-<head>
-<title>NUnit - ExtensionTips</title>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta http-equiv="Content-Language" content="en-US">
-<link rel="stylesheet" type="text/css" href="nunit.css">
-<link rel="shortcut icon" href="favicon.ico">
-</head>
-<!-- End Standard Head Part -->
-
-<body>
-
-<!-- Standard Header for NUnit.org -->
-<div id="header">
-  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
-  <div id="nav">
-    <a href="http://www.nunit.org">NUnit</a>
-    <a class="active" href="index.html">Documentation</a>
-  </div>
-</div>
-<!-- End of Header -->
-
-<div id="content">
-
-<h3>Tips for Writing Extensions</h3>
-
-<p>An Extenders Guide will be published in the future. At the moment, writing an
-extension is a bit of an adventure. Extension authors are advised to join the 
-nunit-developer list and post questions and comments there.
-
-<p>For the moment, the following tips may be of assistance.
-<ul>
-<li>The <b>nunit.core.interfaces</b> assembly is intended to be stable in the future
-while the <b>nunit.core</b> assembly will change from release to release. Right now,
-both assemblies are still in flux, but extensions that depend solely on the interfaces
-assembly will have a much better chance of surviving NUnit version changes. Unfortunately,
-this is rather difficult to do without duplicating a great deal of NUnit code. Most
-of the add-in samples provided with NUnit are currently version dependent.
-
-<li>If you place the definition of a custom attribute in the same assembly as your
-add-in, then user tests are dependent on the add-in assembly. If the add-in is 
-version-dependent, then the user tests will also be version-dependent. We suggest
-placing any types referenced by user tests in a separate assembly, particularly if
-your extension relies on nunit.core.
-
-<li>If using Visual Studio, set Copy Local to false for any references to nunit.core
-or nunit.core.interfaces. This is especially important if you are also building
-NUnit itself.
-
-<li>There is currently no mechanism to allow decorators to apply in a particular order.
-NUnit applies decorators in the order in which they are returned through reflection,
-which may vary among different runtimes.
-
-<li>Avoid trying to "stretch" the existing extension points to do more than they were
-intended to do. Rather, let us know what further extension points you would like to see!
-</ul>
-
-
-</div>
-
-<!-- Submenu -->
-<div id="subnav">
-<ul>
-<li><a href="index.html">NUnit 2.5.9</a></li>
-<ul>
-<li><a href="getStarted.html">Getting&nbsp;Started</a></li>
-<li><a href="assertions.html">Assertions</a></li>
-<li><a href="constraintModel.html">Constraints</a></li>
-<li><a href="attributes.html">Attributes</a></li>
-<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
-<li><a href="extensibility.html">Extensibility</a></li>
-<ul>
-<li><a href="customConstraints.html">Custom&nbsp;Constraints</a></li>
-<li><a href="nunitAddins.html">NUnit&nbsp;Addins</a></li>
-<li id="current"><a href="extensionTips.html">Tips&nbsp;for&nbsp;Extenders</a></li>
-</ul>
-<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
-<li><a href="samples.html">Samples</a></li>
-<li><a href="license.html">License</a></li>
-</ul>
-</ul>
-</div>
-<!-- End of Submenu -->
-
-
-<!-- Standard Footer for NUnit.org -->
-<div id="footer">
-  Copyright &copy; 2010 Charlie Poole. All Rights Reserved.
-</div>
-<!-- End of Footer -->
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/favicon.ico
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/favicon.ico b/lib/NUnit.org/NUnit/2.5.9/doc/favicon.ico
deleted file mode 100644
index b95fa81..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/favicon.ico and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/fileAssert.html
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/fileAssert.html b/lib/NUnit.org/NUnit/2.5.9/doc/fileAssert.html
deleted file mode 100644
index d85ef03..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/fileAssert.html
+++ /dev/null
@@ -1,112 +0,0 @@
-<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-<!-- Standard Head Part -->
-<head>
-<title>NUnit - FileAssert</title>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta http-equiv="Content-Language" content="en-US">
-<link rel="stylesheet" type="text/css" href="nunit.css">
-<link rel="shortcut icon" href="favicon.ico">
-</head>
-<!-- End Standard Head Part -->
-
-<body>
-
-<!-- Standard Header for NUnit.org -->
-<div id="header">
-  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
-  <div id="nav">
-    <a href="http://www.nunit.org">NUnit</a>
-    <a class="active" href="index.html">Documentation</a>
-  </div>
-</div>
-<!-- End of Header -->
-
-<div id="content">
-
-<h2>FileAssert (NUnit 2.4)</h2>
-<p>The FileAssert class provides methods for comparing two files,
-which may be provided as Streams, as FileInfos or as strings 
-giving the path to each file.</p>
-
-<div class="code" style="width: 36em">
-<pre>FileAssert.AreEqual( Stream expected, Stream actual );
-FileAssert.AreEqual( Stream expected, Stream actual, 
-                string message );
-FileAssert.AreEqual( Stream expected, Stream actual,
-                string message, params object[] args );
-
-FileAssert.AreEqual( FileInfo expected, FileInfo actual );
-FileAssert.AreEqual( FileInfo expected, FileInfo actual, 
-                string message );
-FileAssert.AreEqual( FileInfo expected, FileInfo actual,
-                string message, params object[] args );
-
-FileAssert.AreEqual( string expected, string actual );
-FileAssert.AreEqual( string expected, string actual, 
-                string message );
-FileAssert.AreEqual( string expected, string actual,
-                string message, params object[] args );
-
-FileAssert.AreNotEqual( Stream expected, Stream actual );
-FileAssert.AreNotEqual( Stream expected, Stream actual, 
-                string message );
-FileAssert.AreNotEqual( Stream expected, Stream actual,
-                string message, params object[] args );
-
-FileAssert.AreNotEqual( FileInfo expected, FileInfo actual );
-FileAssert.AreNotEqual( FileInfo expected, FileInfo actual, 
-                string message );
-FileAssert.AreNotEqual( FileInfo expected, FileInfo actual,
-                string message, params object[] args );
-
-FileAssert.AreNotEqual( string expected, string actual );
-FileAssert.AreNotEqual( string expected, string actual, 
-                string message );
-FileAssert.AreNotEqual( string expected, string actual,
-                string message, params object[] args );</pre>
-</div>
-
-</div>
-
-<!-- Submenu -->
-<div id="subnav">
-<ul>
-<li><a href="index.html">NUnit 2.5.9</a></li>
-<ul>
-<li><a href="getStarted.html">Getting&nbsp;Started</a></li>
-<li><a href="assertions.html">Assertions</a></li>
-<ul>
-<li><a href="equalityAsserts.html">Equality&nbsp;Asserts</a></li>
-<li><a href="identityAsserts.html">Identity&nbsp;Asserts</a></li>
-<li><a href="conditionAsserts.html">Condition&nbsp;Asserts</a></li>
-<li><a href="comparisonAsserts.html">Comparison&nbsp;Asserts</a></li>
-<li><a href="typeAsserts.html">Type&nbsp;Asserts</a></li>
-<li><a href="exceptionAsserts.html">Exception&nbsp;Asserts</a></li>
-<li><a href="utilityAsserts.html">Utility&nbsp;Methods</a></li>
-<li><a href="stringAssert.html">String&nbsp;Assert</a></li>
-<li><a href="collectionAssert.html">Collection&nbsp;Assert</a></li>
-<li id="current"><a href="fileAssert.html">File&nbsp;Assert</a></li>
-<li><a href="directoryAssert.html">Directory&nbsp;Assert</a></li>
-</ul>
-<li><a href="constraintModel.html">Constraints</a></li>
-<li><a href="attributes.html">Attributes</a></li>
-<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
-<li><a href="extensibility.html">Extensibility</a></li>
-<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
-<li><a href="samples.html">Samples</a></li>
-<li><a href="license.html">License</a></li>
-</ul>
-</ul>
-</div>
-<!-- End of Submenu -->
-
-
-<!-- Standard Footer for NUnit.org -->
-<div id="footer">
-  Copyright &copy; 2010 Charlie Poole. All Rights Reserved.
-</div>
-<!-- End of Footer -->
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/files/QuickStart.Spanish.doc
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/files/QuickStart.Spanish.doc b/lib/NUnit.org/NUnit/2.5.9/doc/files/QuickStart.Spanish.doc
deleted file mode 100644
index b60a15a..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/files/QuickStart.Spanish.doc and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/files/QuickStart.doc
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/files/QuickStart.doc b/lib/NUnit.org/NUnit/2.5.9/doc/files/QuickStart.doc
deleted file mode 100644
index d92ad94..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/files/QuickStart.doc and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/files/Results.xsd
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/files/Results.xsd b/lib/NUnit.org/NUnit/2.5.9/doc/files/Results.xsd
deleted file mode 100644
index df3e76e..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/files/Results.xsd
+++ /dev/null
@@ -1,70 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
-	<xs:complexType name="failureType">
-		<xs:sequence>
-			<xs:element ref="message" />
-			<xs:element ref="stack-trace" />
-		</xs:sequence>
-	</xs:complexType>
-	<xs:complexType name="reasonType">
-		<xs:sequence>
-			<xs:element ref="message" />
-		</xs:sequence>
-	</xs:complexType>
-	<xs:element name="message" type="xs:string" />
-	<xs:complexType name="resultsType">
-		<xs:choice>
-			<xs:element name="test-suite" type="test-suiteType" maxOccurs="unbounded" />
-			<xs:element name="test-case" type="test-caseType" maxOccurs="unbounded" minOccurs="0" />
-		</xs:choice>
-	</xs:complexType>
-	<xs:element name="stack-trace" type="xs:string" />
-	<xs:element name="test-results" type="resultType" />
-	<xs:complexType name="categoriesType">
-		<xs:sequence>
-			<xs:element name="category" type="categoryType" maxOccurs="unbounded" minOccurs="1"/>
-		</xs:sequence>
-	</xs:complexType>
-	<xs:complexType name="categoryType">
-		<xs:attribute name="name" type="xs:string" use="required"/>
-	</xs:complexType>
-	<xs:complexType name="resultType">
-		<xs:sequence>
-			<xs:element name="test-suite" type="test-suiteType" />
-		</xs:sequence>
-		<xs:attribute name="name" type="xs:string" use="required" />
-		<xs:attribute name="total" type="xs:decimal" use="required" />
-		<xs:attribute name="failures" type="xs:decimal" use="required" />
-		<xs:attribute name="not-run" type="xs:decimal" use="required" />
-		<xs:attribute name="date" type="xs:string" use="required" />
-		<xs:attribute name="time" type="xs:string" use="required" />
-	</xs:complexType>
-	<xs:complexType name="test-caseType">
-		<xs:sequence>
-			<xs:element name="categories" type="categoriesType" minOccurs="0" maxOccurs="1" />
-			<xs:choice>
-				<xs:element name="failure" type="failureType" minOccurs="0" />
-				<xs:element name="reason" type="reasonType" minOccurs="0" />
-			</xs:choice>
-		</xs:sequence>
-			
-		<xs:attribute name="name" type="xs:string" use="required" />
-		<xs:attribute name="description" type="xs:string" use="optional" />
-		<xs:attribute name="success" type="xs:string" use="optional" />
-		<xs:attribute name="time" type="xs:string" use="optional" />
-		<xs:attribute name="executed" type="xs:string" use="required" />
-		<xs:attribute name="asserts" type="xs:string" use="optional" />
-	</xs:complexType>
-	<xs:complexType name="test-suiteType">
-		<xs:sequence>
-			<xs:element name="categories" type="categoriesType" minOccurs="0" maxOccurs="1" />
-			<xs:element name="results" type="resultsType" />
-		</xs:sequence>
-		<xs:attribute name="name" type="xs:string" use="required" />
-		<xs:attribute name="description" type="xs:string" use="optional" />
-		<xs:attribute name="success" type="xs:string" use="required" />
-		<xs:attribute name="time" type="xs:string" use="required" />
-		<xs:attribute name="asserts" type="xs:string" use="optional" />
-	</xs:complexType>
-
-</xs:schema>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/files/Summary.xslt
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/files/Summary.xslt b/lib/NUnit.org/NUnit/2.5.9/doc/files/Summary.xslt
deleted file mode 100644
index 004806d..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/files/Summary.xslt
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-<xsl:output method='text'/>
-
-<xsl:template match="/">
-	<xsl:apply-templates/>
-</xsl:template>
-
-<xsl:template match="test-results">
-<xsl:text>Tests run: </xsl:text>
-<xsl:value-of select="@total"/>
-<xsl:text>, Failures: </xsl:text>
-<xsl:value-of select="@failures"/>
-<xsl:text>, Not run: </xsl:text>
-<xsl:value-of select="@not-run"/>
-<xsl:text>, Time: </xsl:text>
-<xsl:value-of select="test-suite/@time"/>
-<xsl:text> seconds
-</xsl:text>
-<xsl:text>
-</xsl:text>
-
-<xsl:if test="//test-case[failure]"><xsl:text>Failures:
-</xsl:text></xsl:if>
-<xsl:apply-templates select="//test-case[failure]"/>
-<xsl:if test="//test-case[@executed='False']"><xsl:text>Tests not run:
-</xsl:text></xsl:if>
-<xsl:apply-templates select="//test-case[@executed='False']"/>
-<xsl:text disable-output-escaping='yes'>&#xD;&#xA;</xsl:text>
-</xsl:template>
-
-<xsl:template match="test-case">
-	<xsl:value-of select="position()"/><xsl:text>) </xsl:text>
-	<xsl:value-of select="@name"/>
-	<xsl:text> : </xsl:text>
-	<xsl:value-of select="child::node()/message"/>
-<xsl:text disable-output-escaping='yes'>&#xD;&#xA;</xsl:text>
-	<xsl:if test="failure">
-		<xsl:value-of select="failure/stack-trace"/>
-<xsl:text>
-</xsl:text>
-	</xsl:if>
-</xsl:template>
-
-</xsl:stylesheet>
-
-  
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/files/TestResult.xml
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/files/TestResult.xml b/lib/NUnit.org/NUnit/2.5.9/doc/files/TestResult.xml
deleted file mode 100644
index bd8e0e6..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/files/TestResult.xml
+++ /dev/null
@@ -1,135 +0,0 @@
-<?xml version="1.0" encoding="utf-8" standalone="no"?>
-<!--This file represents the results of running a test suite-->
-<test-results name="tests\mock-assembly.dll" total="8" errors="1" failures="1" not-run="7" ignored="4" skipped="0" invalid="3" date="2008-11-22" time="20:17:48">
-  <environment nunit-version="2.5.0.8327" clr-version="2.0.50727.1433" os-version="Microsoft Windows NT 5.1.2600 Service Pack 2" platform="Win32NT" cwd="C:\Program Files\NUnit 2.5\bin\net-2.0" machine-name="FERRARI" user="Charlie" user-domain="FERRARI" />
-  <culture-info current-culture="en-US" current-uiculture="en-US" />
-  <test-suite name="tests\mock-assembly.dll" executed="True" success="False" time="0.125" asserts="0">
-    <results>
-      <test-suite name="NUnit" executed="True" success="False" time="0.109" asserts="0">
-        <results>
-          <test-suite name="Tests" executed="True" success="False" time="0.109" asserts="0">
-            <results>
-              <test-suite name="Assemblies" executed="True" success="False" time="0.109" asserts="0">
-                <results>
-                  <test-suite name="MockTestFixture" description="Fake Test Fixture" executed="True" success="False" time="0.109" asserts="0">
-                    <categories>
-                      <category name="FixtureCategory" />
-                    </categories>
-                    <results>
-                      <test-case name="NUnit.Tests.Assemblies.MockTestFixture.FailingTest" executed="True" success="False" time="0.047" asserts="0">
-                        <failure>
-                          <message><![CDATA[Intentional failure]]></message>
-                          <stack-trace><![CDATA[at NUnit.Tests.Assemblies.MockTestFixture.FailingTest()
-]]></stack-trace>
-                        </failure>
-                      </test-case>
-                      <test-case name="NUnit.Tests.Assemblies.MockTestFixture.MockTest1" description="Mock Test #1" executed="True" success="True" time="0.000" asserts="0" />
-                      <test-case name="NUnit.Tests.Assemblies.MockTestFixture.MockTest2" executed="True" success="True" time="0.000" asserts="0">
-                        <categories>
-                          <category name="MockCategory" />
-                        </categories>
-                        <properties>
-                          <property name="Severity" value="Critical" />
-                        </properties>
-                      </test-case>
-                      <test-case name="NUnit.Tests.Assemblies.MockTestFixture.MockTest3" executed="True" success="True" time="0.000" asserts="0">
-                        <categories>
-                          <category name="AnotherCategory" />
-                          <category name="MockCategory" />
-                        </categories>
-                      </test-case>
-                      <test-case name="NUnit.Tests.Assemblies.MockTestFixture.MockTest4" executed="False">
-                        <categories>
-                          <category name="Foo" />
-                        </categories>
-                        <reason>
-                          <message><![CDATA[ignoring this test method for now]]></message>
-                        </reason>
-                      </test-case>
-                      <test-case name="NUnit.Tests.Assemblies.MockTestFixture.MockTest5" executed="False">
-                        <reason>
-                          <message><![CDATA[Method is not public]]></message>
-                        </reason>
-                      </test-case>
-                      <test-case name="NUnit.Tests.Assemblies.MockTestFixture.NotRunnableTest" executed="False">
-                        <reason>
-                          <message><![CDATA[No arguments provided]]></message>
-                        </reason>
-                      </test-case>
-                      <test-case name="NUnit.Tests.Assemblies.MockTestFixture.TestWithException" executed="True" success="False" time="0.000" asserts="0">
-                        <failure>
-                          <message><![CDATA[System.ApplicationException : Intentional Exception]]></message>
-                          <stack-trace><![CDATA[at NUnit.Tests.Assemblies.MockTestFixture.MethodThrowsException()
-at NUnit.Tests.Assemblies.MockTestFixture.TestWithException()
-]]></stack-trace>
-                        </failure>
-                      </test-case>
-                      <test-case name="NUnit.Tests.Assemblies.MockTestFixture.TestWithManyProperties" executed="True" success="True" time="0.000" asserts="0">
-                        <properties>
-                          <property name="Size" value="5" />
-                          <property name="TargetMethod" value="SomeClassName" />
-                        </properties>
-                      </test-case>
-                    </results>
-                  </test-suite>
-                </results>
-              </test-suite>
-              <test-suite name="BadFixture" executed="False">
-                <reason>
-                  <message><![CDATA[No suitable constructor was found]]></message>
-                </reason>
-                <results>
-                  <test-case name="NUnit.Tests.BadFixture.SomeTest" executed="False">
-                    <reason>
-                      <message><![CDATA[No suitable constructor was found]]></message>
-                    </reason>
-                  </test-case>
-                </results>
-              </test-suite>
-              <test-suite name="IgnoredFixture" executed="False">
-                <reason>
-                  <message><![CDATA[]]></message>
-                </reason>
-                <results>
-                  <test-case name="NUnit.Tests.IgnoredFixture.Test1" executed="False">
-                    <reason>
-                      <message><![CDATA[]]></message>
-                    </reason>
-                  </test-case>
-                  <test-case name="NUnit.Tests.IgnoredFixture.Test2" executed="False">
-                    <reason>
-                      <message><![CDATA[]]></message>
-                    </reason>
-                  </test-case>
-                  <test-case name="NUnit.Tests.IgnoredFixture.Test3" executed="False">
-                    <reason>
-                      <message><![CDATA[]]></message>
-                    </reason>
-                  </test-case>
-                </results>
-              </test-suite>
-              <test-suite name="Singletons" executed="True" success="True" time="0.000" asserts="0">
-                <results>
-                  <test-suite name="OneTestCase" executed="True" success="True" time="0.000" asserts="0">
-                    <results>
-                      <test-case name="NUnit.Tests.Singletons.OneTestCase.TestCase" executed="True" success="True" time="0.000" asserts="0" />
-                    </results>
-                  </test-suite>
-                </results>
-              </test-suite>
-              <test-suite name="TestAssembly" executed="True" success="True" time="0.000" asserts="0">
-                <results>
-                  <test-suite name="MockTestFixture" executed="True" success="True" time="0.000" asserts="0">
-                    <results>
-                      <test-case name="NUnit.Tests.TestAssembly.MockTestFixture.MyTest" executed="True" success="True" time="0.000" asserts="0" />
-                    </results>
-                  </test-suite>
-                </results>
-              </test-suite>
-            </results>
-          </test-suite>
-        </results>
-      </test-suite>
-    </results>
-  </test-suite>
-</test-results>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/fixtureSetup.html
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/fixtureSetup.html b/lib/NUnit.org/NUnit/2.5.9/doc/fixtureSetup.html
deleted file mode 100644
index dd6fd26..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/fixtureSetup.html
+++ /dev/null
@@ -1,238 +0,0 @@
-<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-<!-- Standard Head Part -->
-<head>
-<title>NUnit - FixtureSetup</title>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta http-equiv="Content-Language" content="en-US">
-<link rel="stylesheet" type="text/css" href="nunit.css">
-<link rel="shortcut icon" href="favicon.ico">
-</head>
-<!-- End Standard Head Part -->
-
-<body>
-
-<!-- Standard Header for NUnit.org -->
-<div id="header">
-  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
-  <div id="nav">
-    <a href="http://www.nunit.org">NUnit</a>
-    <a class="active" href="index.html">Documentation</a>
-  </div>
-</div>
-<!-- End of Header -->
-
-<div id="content">
-
-<script language="JavaScript" src="codeFuncs.js" ></script> <!-- Do it this way for IE -->
-
-<h3>TestFixtureSetUpAttribute (NUnit 2.1 / 2.5)</h3>
-
-<p>This attribute is used inside a TestFixture to provide a single set of 
-	functions that are performed once prior to executing any of the tests
-	in the fixture. 
-	
-<p><b>Before NUnit 2.5</b>, a TestFixture could have only one TestFixtureSetUp method
-	and it was required to be an instance method. 
-
-<p><b>Beginning with NUnit 2.5</b>, TestFixtureSetUp methods may be either static or
-   instance methods and you may define more than one of them in a fixture.
-   Normally, multiple TestFixtureSetUp methods are only defined at different levels
-   of an inheritance hierarchy, as explained below.
-
-<p>If a TestFixtueSetUp method fails or throws an exception, none of the tests
-   in the fixure are executed and a failure or error is reported.
-
-<h4>Example:</h4>
-
-<div class="code">
-
-<div class="langFilter">
-	<a href="javascript:Show('DD1')" onmouseover="Show('DD1')"><img src="img/langFilter.gif" width="14" height="14" alt="Language Filter"></a>
-	<div id="DD1" class="dropdown" style="display: none;" onclick="Hide('DD1')">
-		<a href="javascript:ShowCS()">C#</a><br>
-		<a href="javascript:ShowVB()">VB</a><br>
-		<a href="javascript:ShowMC()">C++</a><br>
-		<a href="javascript:ShowJS()">J#</a><br>
-	</div>
-</div>
-
-<pre class="cs">namespace NUnit.Tests
-{
-  using System;
-  using NUnit.Framework;
-
-  [TestFixture]
-  public class SuccessTests
-  {
-    [TestFixtureSetUp] public void Init()
-    { /* ... */ }
-
-    [TestFixtureTearDown] public void Cleanup()
-    { /* ... */ }
-
-    [Test] public void Add()
-    { /* ... */ }
-  }
-}
-</pre>
-
-<pre class="vb">Imports System
-Imports Nunit.Framework
-
-Namespace Nunit.Tests
-
-  &lt;TestFixture()&gt; Public Class SuccessTests
-    &lt;TestFixtureSetUp()&gt; Public Sub Init()
-    ' ...
-    End Sub
-
-    &lt;TestFixtureTearDown()&gt; Public Sub Cleanup()
-    ' ...
-    End Sub
-
-    &lt;Test()&gt; Public Sub Add()
-    ' ...
-    End Sub
-  End Class
-End Namespace
-</pre>
-
-<pre class="mc">#using &lt;Nunit.Framework.dll&gt;
-using namespace System;
-using namespace NUnit::Framework;
-
-namespace NUnitTests
-{
-  [TestFixture]
-  public __gc class SuccessTests
-  {
-    [TestFixtureSetUp] void Init();
-    [TestFixtureTearDown] void Cleanup();
-
-    [Test] void Add();
-  };
-}
-
-#include "cppsample.h"
-
-namespace NUnitTests {
-  // ...
-}
-</pre>
-
-<pre class="js">package NUnit.Tests;
-
-import System.*;
-import NUnit.Framework.TestFixture;
-
-
-/** @attribute NUnit.Framework.TestFixture() */
-public class SuccessTests
-{
-  /** @attribute NUnit.Framework.TestFixtureSetUp() */
-  public void Init()
-  { /* ... */ }
-
-  /** @attribute NUnit.Framework.TestFixtureTearDown() */
-  public void Cleanup()
-  { /* ... */ }
-
-  /** @attribute NUnit.Framework.Test() */
-  public void Add()
-  { /* ... */ }
-}
-</pre>
-
-</div>
-
-<h3>Inheritance</h3>
-
-<p>The TestFixtureSetUp attribute is inherited from any base class. Therefore, if a base 
-	class has defined a SetFixtureSetUp method, that method will be called 
-	after each test method in the derived class. 
-	
-<p>Before NUnit 2.5, you were permitted only one TestFixtureSetUp method. If you wanted to 
-   have some TestFixtureSetUp functionality in the base class and add more in the derived 
-   class you needed to call the base class method yourself.
-
-<p>With NUnit 2.5, you can achieve the same result by defining a TestFixtureSetUp method
-   in the base class and another in the derived class. NUnit will call base
-   class TestFixtureSetUp methods before those in the derived classes.
-   
-<p><b>Note:</b> Although it is possible to define multiple TestFixtureSetUp methods
-   in the same class, you should rarely do so. Unlike methods defined in
-   separate classes in the inheritance hierarchy, the order in which they
-   are executed is not guaranteed.
-
-<h4>See also...</h4>
-<ul>
-<li><a href="setup.html">SetUpAttribute</a><li><a href="teardown.html">TearDownAttribute</a><li><a href="fixtureTeardown.html">TestFixtureTearDownAttribute</a></ul>
-
-</div>
-
-<!-- Submenu -->
-<div id="subnav">
-<ul>
-<li><a href="index.html">NUnit 2.5.9</a></li>
-<ul>
-<li><a href="getStarted.html">Getting&nbsp;Started</a></li>
-<li><a href="assertions.html">Assertions</a></li>
-<li><a href="constraintModel.html">Constraints</a></li>
-<li><a href="attributes.html">Attributes</a></li>
-<ul>
-<li><a href="category.html">Category</a></li>
-<li><a href="combinatorial.html">Combinatorial</a></li>
-<li><a href="culture.html">Culture</a></li>
-<li><a href="datapoint.html">Datapoint(s)</a></li>
-<li><a href="description.html">Description</a></li>
-<li><a href="exception.html">Exception</a></li>
-<li><a href="explicit.html">Explicit</a></li>
-<li><a href="ignore.html">Ignore</a></li>
-<li><a href="maxtime.html">Maxtime</a></li>
-<li><a href="pairwise.html">Pairwise</a></li>
-<li><a href="platform.html">Platform</a></li>
-<li><a href="property.html">Property</a></li>
-<li><a href="random.html">Random</a></li>
-<li><a href="range.html">Range</a></li>
-<li><a href="repeat.html">Repeat</a></li>
-<li><a href="requiredAddin.html">RequiredAddin</a></li>
-<li><a href="requiresMTA.html">Requires&nbsp;MTA</a></li>
-<li><a href="requiresSTA.html">Requires&nbsp;STA</a></li>
-<li><a href="requiresThread.html">Requires&nbsp;Thread</a></li>
-<li><a href="sequential.html">Sequential</a></li>
-<li><a href="setCulture.html">SetCulture</a></li>
-<li><a href="setup.html">Setup</a></li>
-<li><a href="setupFixture.html">SetupFixture</a></li>
-<li><a href="suite.html">Suite</a></li>
-<li><a href="teardown.html">Teardown</a></li>
-<li><a href="test.html">Test</a></li>
-<li><a href="testCase.html">TestCase</a></li>
-<li><a href="testCaseSource.html">TestCaseSource</a></li>
-<li><a href="testFixture.html">TestFixture</a></li>
-<li id="current"><a href="fixtureSetup.html">TestFixtureSetUp</a></li>
-<li><a href="fixtureTeardown.html">TestFixtureTearDown</a></li>
-<li><a href="theory.html">Theory</a></li>
-<li><a href="timeout.html">Timeout</a></li>
-<li><a href="values.html">Values</a></li>
-<li><a href="valueSource.html">ValueSource</a></li>
-</ul>
-<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
-<li><a href="extensibility.html">Extensibility</a></li>
-<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
-<li><a href="samples.html">Samples</a></li>
-<li><a href="license.html">License</a></li>
-</ul>
-</ul>
-</div>
-<!-- End of Submenu -->
-
-
-<!-- Standard Footer for NUnit.org -->
-<div id="footer">
-  Copyright &copy; 2010 Charlie Poole. All Rights Reserved.
-</div>
-<!-- End of Footer -->
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/fixtureTeardown.html
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/fixtureTeardown.html b/lib/NUnit.org/NUnit/2.5.9/doc/fixtureTeardown.html
deleted file mode 100644
index 9260599..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/fixtureTeardown.html
+++ /dev/null
@@ -1,238 +0,0 @@
-<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-<!-- Standard Head Part -->
-<head>
-<title>NUnit - FixtureTeardown</title>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta http-equiv="Content-Language" content="en-US">
-<link rel="stylesheet" type="text/css" href="nunit.css">
-<link rel="shortcut icon" href="favicon.ico">
-</head>
-<!-- End Standard Head Part -->
-
-<body>
-
-<!-- Standard Header for NUnit.org -->
-<div id="header">
-  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
-  <div id="nav">
-    <a href="http://www.nunit.org">NUnit</a>
-    <a class="active" href="index.html">Documentation</a>
-  </div>
-</div>
-<!-- End of Header -->
-
-<div id="content">
-
-<script language="JavaScript" src="codeFuncs.js" ></script> <!-- Do it this way for IE -->
-
-<h3>TestFixtureTearDownAttribute (NUnit 2.1 / 2.5)</h3>
-
-<p>This attribute is used inside a TestFixture to provide a single set of 
-	functions that are performed once after all tests are completed. 
-	
-<p><b>Before NUnit 2.5</b>, a TestFixture could have only one SetUp method
-	and it was required to be an instance method. 
-
-<p><b>Beginning with NUnit 2.5</b>, TestFixtureTearDown methods may be either static or
-   instance methods and you may define more than one of them in a fixture.
-   Normally, multiple TestFixtureTearDown methods are only defined at different levels
-   of an inheritance hierarchy, as explained below.
-
-<p>So long as any TestFixtureSetUp method runs without error, the TestFixtureTearDown method is 
-   guaranteed to run. It will not run if a TestFixtureSetUp method fails or throws an 
-   exception.</p>
-
-<h4>Example:</h4>
-
-<div class="code">
-
-<div class="langFilter">
-	<a href="javascript:Show('DD1')" onmouseover="Show('DD1')"><img src="img/langFilter.gif" width="14" height="14" alt="Language Filter"></a>
-	<div id="DD1" class="dropdown" style="display: none;" onclick="Hide('DD1')">
-		<a href="javascript:ShowCS()">C#</a><br>
-		<a href="javascript:ShowVB()">VB</a><br>
-		<a href="javascript:ShowMC()">C++</a><br>
-		<a href="javascript:ShowJS()">J#</a><br>
-	</div>
-</div>
-
-<pre class="cs">namespace NUnit.Tests
-{
-  using System;
-  using NUnit.Framework;
-
-  [TestFixture]
-  public class SuccessTests
-  {
-    [TestFixtureSetUp] public void Init()
-    { /* ... */ }
-
-    [TestFixtureTearDown] public void Cleanup()
-    { /* ... */ }
-
-    [Test] public void Add()
-    { /* ... */ }
-  }
-}
-</pre>
-
-<pre class="vb">Imports System
-Imports Nunit.Framework
-
-Namespace Nunit.Tests
-
-  &lt;TestFixture()&gt; Public Class SuccessTests
-    &lt;TestFixtureSetUp()&gt; Public Sub Init()
-    ' ...
-    End Sub
-
-    &lt;TestFixtureTearDown()&gt; Public Sub Cleanup()
-    ' ...
-    End Sub
-
-    &lt;Test()&gt; Public Sub Add()
-    ' ...
-    End Sub
-  End Class
-End Namespace
-</pre>
-
-<pre class="mc">#using &lt;Nunit.Framework.dll&gt;
-using namespace System;
-using namespace NUnit::Framework;
-
-namespace NUnitTests
-{
-  [TestFixture]
-  public __gc class SuccessTests
-  {
-    [TestFixtureSetUp] void Init();
-    [TestFixtureTearDown] void Cleanup();
-
-    [Test] void Add();
-  };
-}
-
-#include "cppsample.h"
-
-namespace NUnitTests {
-  // ...
-}
-</pre>
-
-<pre class="js">package NUnit.Tests;
-
-import System.*;
-import NUnit.Framework.TestFixture;
-
-
-/** @attribute NUnit.Framework.TestFixture() */
-public class SuccessTests
-{
-  /** @attribute NUnit.Framework.TestFixtureSetUp() */
-  public void Init()
-  { /* ... */ }
-
-  /** @attribute NUnit.Framework.TestFixtureTearDown() */
-  public void Cleanup()
-  { /* ... */ }
-
-  /** @attribute NUnit.Framework.Test() */
-  public void Add()
-  { /* ... */ }
-}
-</pre>
-
-</div>
-
-<h3>Inheritance</h3>
-
-<p>The TestFixtureTearDown attribute is inherited from any base class. Therefore, if a base 
-	class has defined a TestFixtureTearDown method, that method will be called 
-	after each test method in the derived class. 
-	
-<p>Before NUnit 2.5, you were permitted only one TestFixtureTearDown method. If you wanted to 
-   have some TestFixtureTearDown functionality in the base class and add more in the derived 
-   class you needed to call the base class method yourself.
-   
-<p>With NUnit 2.5, you can achieve the same result by defining a TestFixtureTearDown method
-   in the base class and another in the derived class. NUnit will call base
-   class TestFixtureTearDown methods after those in the derived classes.
-   
-<p><b>Note:</b> Although it is possible to define multiple TestFixtureTearDown methods
-   in the same class, you should rarely do so. Unlike methods defined in
-   separate classes in the inheritance hierarchy, the order in which they
-   are executed is not guaranteed.
-
-<h4>See also...</h4>
-<ul>
-<li><a href="setup.html">SetUpAttribute</a><li><a href="teardown.html">TearDownAttribute</a><li><a href="fixtureSetup.html">TestFixtureSetUpAttribute</a></ul>
-
-</div>
-
-<!-- Submenu -->
-<div id="subnav">
-<ul>
-<li><a href="index.html">NUnit 2.5.9</a></li>
-<ul>
-<li><a href="getStarted.html">Getting&nbsp;Started</a></li>
-<li><a href="assertions.html">Assertions</a></li>
-<li><a href="constraintModel.html">Constraints</a></li>
-<li><a href="attributes.html">Attributes</a></li>
-<ul>
-<li><a href="category.html">Category</a></li>
-<li><a href="combinatorial.html">Combinatorial</a></li>
-<li><a href="culture.html">Culture</a></li>
-<li><a href="datapoint.html">Datapoint(s)</a></li>
-<li><a href="description.html">Description</a></li>
-<li><a href="exception.html">Exception</a></li>
-<li><a href="explicit.html">Explicit</a></li>
-<li><a href="ignore.html">Ignore</a></li>
-<li><a href="maxtime.html">Maxtime</a></li>
-<li><a href="pairwise.html">Pairwise</a></li>
-<li><a href="platform.html">Platform</a></li>
-<li><a href="property.html">Property</a></li>
-<li><a href="random.html">Random</a></li>
-<li><a href="range.html">Range</a></li>
-<li><a href="repeat.html">Repeat</a></li>
-<li><a href="requiredAddin.html">RequiredAddin</a></li>
-<li><a href="requiresMTA.html">Requires&nbsp;MTA</a></li>
-<li><a href="requiresSTA.html">Requires&nbsp;STA</a></li>
-<li><a href="requiresThread.html">Requires&nbsp;Thread</a></li>
-<li><a href="sequential.html">Sequential</a></li>
-<li><a href="setCulture.html">SetCulture</a></li>
-<li><a href="setup.html">Setup</a></li>
-<li><a href="setupFixture.html">SetupFixture</a></li>
-<li><a href="suite.html">Suite</a></li>
-<li><a href="teardown.html">Teardown</a></li>
-<li><a href="test.html">Test</a></li>
-<li><a href="testCase.html">TestCase</a></li>
-<li><a href="testCaseSource.html">TestCaseSource</a></li>
-<li><a href="testFixture.html">TestFixture</a></li>
-<li><a href="fixtureSetup.html">TestFixtureSetUp</a></li>
-<li id="current"><a href="fixtureTeardown.html">TestFixtureTearDown</a></li>
-<li><a href="theory.html">Theory</a></li>
-<li><a href="timeout.html">Timeout</a></li>
-<li><a href="values.html">Values</a></li>
-<li><a href="valueSource.html">ValueSource</a></li>
-</ul>
-<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
-<li><a href="extensibility.html">Extensibility</a></li>
-<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
-<li><a href="samples.html">Samples</a></li>
-<li><a href="license.html">License</a></li>
-</ul>
-</ul>
-</div>
-<!-- End of Submenu -->
-
-
-<!-- Standard Footer for NUnit.org -->
-<div id="footer">
-  Copyright &copy; 2010 Charlie Poole. All Rights Reserved.
-</div>
-<!-- End of Footer -->
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/getStarted.html
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/getStarted.html b/lib/NUnit.org/NUnit/2.5.9/doc/getStarted.html
deleted file mode 100644
index de5cea9..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/getStarted.html
+++ /dev/null
@@ -1,80 +0,0 @@
-<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-<!-- Standard Head Part -->
-<head>
-<title>NUnit - GetStarted</title>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta http-equiv="Content-Language" content="en-US">
-<link rel="stylesheet" type="text/css" href="nunit.css">
-<link rel="shortcut icon" href="favicon.ico">
-</head>
-<!-- End Standard Head Part -->
-
-<body>
-
-<!-- Standard Header for NUnit.org -->
-<div id="header">
-  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
-  <div id="nav">
-    <a href="http://www.nunit.org">NUnit</a>
-    <a class="active" href="index.html">Documentation</a>
-  </div>
-</div>
-<!-- End of Header -->
-
-<div id="content">
-
-<h2>Getting Started with NUnit</h2>
-
-<p>If you haven't already done so, go to our <a href="http://www.nunit.org/download.html">Download</a>	page, select a version of NUnit and download it. The 
-	<a href="installation.html">Installation</a> page 
-	contains instructions for installing on your system.</p>
-
-<p>To get started using NUnit, read the <a href="quickStart.html">Quick Start</a>	page. This article demonstrates the development process with NUnit in the 
-	context of a C# banking application. Check the 
-	<a href="samples.html">Samples</a> page for additional examples, 
-	including some in VB.Net, J# and managed C++.</p>
-
-<h3>Which Test Runner to use?</h3>
-
-<p>NUnit has two different ways to run your tests. The 
-	<a href="nunit-console.html">console runner</a>, nunit-console.exe, 
-	is the fastest to launch, but is not interactive. 
- 	The <a href="nunit-gui.html">gui runner</a>, 
-	nunit.exe, is a Windows Forms application that allows you to work 
-	selectively with your tests and provides graphical feedback.</p>
-
-</div>
-
-<!-- Submenu -->
-<div id="subnav">
-<ul>
-<li><a href="index.html">NUnit 2.5.9</a></li>
-<ul>
-<li id="current"><a href="getStarted.html">Getting&nbsp;Started</a></li>
-<ul>
-<li><a href="quickStart.html">Quick&nbsp;Start</a></li>
-<li><a href="installation.html">Installation</a></li>
-</ul>
-<li><a href="assertions.html">Assertions</a></li>
-<li><a href="constraintModel.html">Constraints</a></li>
-<li><a href="attributes.html">Attributes</a></li>
-<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
-<li><a href="extensibility.html">Extensibility</a></li>
-<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
-<li><a href="samples.html">Samples</a></li>
-<li><a href="license.html">License</a></li>
-</ul>
-</ul>
-</div>
-<!-- End of Submenu -->
-
-
-<!-- Standard Footer for NUnit.org -->
-<div id="footer">
-  Copyright &copy; 2010 Charlie Poole. All Rights Reserved.
-</div>
-<!-- End of Footer -->
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/guiCommandLine.html
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/guiCommandLine.html b/lib/NUnit.org/NUnit/2.5.9/doc/guiCommandLine.html
deleted file mode 100644
index d774260..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/guiCommandLine.html
+++ /dev/null
@@ -1,193 +0,0 @@
-<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-<!-- Standard Head Part -->
-<head>
-<title>NUnit - GuiCommandLine</title>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta http-equiv="Content-Language" content="en-US">
-<link rel="stylesheet" type="text/css" href="nunit.css">
-<link rel="shortcut icon" href="favicon.ico">
-</head>
-<!-- End Standard Head Part -->
-
-<body>
-
-<!-- Standard Header for NUnit.org -->
-<div id="header">
-  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
-  <div id="nav">
-    <a href="http://www.nunit.org">NUnit</a>
-    <a class="active" href="index.html">Documentation</a>
-  </div>
-</div>
-<!-- End of Header -->
-
-<div id="content">
-
-<h2>NUnit Command Line Options</h2>
-<p>The forms interface may be run with or without the name of a file containing 
-	tests on the command line. If the program is started without any file 
-	specified, it automatically loads the most recently loaded assembly.</p>
-<p><b>Note:</b> Options that take values may use an equal sign, a colon or a space 
-	to separate the option from its value.</p>
-<p><b>Note:</b> Under the Windows operating system, options may be prefixed by either
-    a forward slash or a hyphen. Under Linux, a hyphen must be used. Options that
-	take values may use an equal sign, a colon or a space to separate the option 
-	from its value.</p>
-<h4>Run without loading an Assembly</h4>
-<p>To suppress loading of the most recent assembly, use the <b>/noload</b> switch:
-	<pre class="programtext">        nunit /noload</pre>
-</p>
-<h4>Specifying an Assembly</h4>
-<p>The other option is to specify an assembly or project file name on the command 
-	line. The following will start the forms interface with the assembly 
-	nunit.tests.dll:
-	<pre class="programtext">        nunit nunit.tests.dll</pre>
-</p>
-<p>The following will start the forms interface loading the same assembly through 
-	its Visual Studio project definition:
-	<pre class="programtext">        nunit nunit.tests.csproj</pre>
-</p>
-<p>Assuming an NUnit test project has been created containing the assembly, the 
-	following will again load nunit.tests.dll:
-	<pre class="programtext">        nunit nunit.tests.nunit</pre>
-</p>
-<h4>Specifying an Assembly and a Fixture</h4>
-<p>
-	When specifying a a fixture, you must give the full name of the test fixture 
-	along with the containing assembly. For example, to load only the 
-	NUnit.Tests.AssertionTests in the nunit.tests.dll assembly use the following 
-	command:
-	<pre class="programtext">        nunit /fixture:NUnit.Tests.AssertionTests nunit.tests.dll</pre>
-</p>
-<p>The name specified after the <b>/fixture</b> option may be that of a TestFixture 
-	class, or a namespace. If a namespace is given, then all fixtures under that 
-	namespace are loaded. This option may be used with Visual Studio or NUnit 
-	projects as well.</p>
-
-<h4>Specifying Test Categories to Include or Exclude</h4>
-<p>NUnit provides CategoryAttribute for use in marking tests as belonging to 
-	one or more categories. Categories may be included or excluded in a test run 
-	using the <b>/include</b> or <b>/exclude</b> options. The following command 
-	starts the gui with only the tests in the BaseLine category selected:
-	<pre class="programtext">        nunit myassembly.dll /include:BaseLine</pre>
-</p>
-<p>The following command selects all tests <b>except</b> those in the Database 
-	category:
-	<pre class="programtext">        nunit myassembly.dll /exclude:Database</pre>
-</p>
-<p>
-Multiple categories may be specified on either option, by using commas to 
-separate them.
-<p><b>Note:</b> At this time, the /include and /exclude options may not be
-combined on the command line.</p>
-<!--   
-<h4>Specifying the Version of the CLR</h4>
-
-<p>Most applications are written to run under a specific version of the CLR.
-A few are designed to operate correctly under multiple versions. In either case,
-it is important to be able to specify the CLR version to be used for testing.</p>
-
-<p>When only one version of the CLR is used, the config files for nunit and
-nunit-console may be set up to specify that version. As a more convenient
-alternative when switching CLRs, you may use the provided <b>clr.bat</b>
-command to specify the version under which NUnit should run.</p>
-
-<p>For example, to run the gui under the RTM version of 
-the .Net 2.0 framework, use:</p>
-
-<pre class="programtext">       clr net-2.0 nunit</pre>
-
-<p>The <b>clr.bat</b> file is located in the NUnit <b>bin</b> directory. You may
-put this on your path, or copy it to a convenient location. Enter <b>clr /?</b> 
-for a list of options.</p>
-	
-<p><b>Note:</b> If you use a &lt;startup&gt; section in the config file, it takes
-precedence over this option.</p>
-
-<p><b>Note:</b> This command is specific to the Microsoft .Net 
-framework. The Mono framework provides other means to specify the version
-to be used when running a command and the NUnit Windows interface does
-not currently run under Mono.</p>
--->
-
-<h4>Load and Run All Tests</h4>
-Normally, nunit only loads an assembly and then waits for the user to click 
-on the Run button. If you wish to have the tests run immediately, use the <b>/run</b>
-option:
-<pre class="programtext">        nunit nunit.tests.dll /run</pre>
-</p>
-<h4>Load and Run Selected Tests</h4>
-To load and immediately rerun the last selected tests, use the <b>/runselected</b>
-option:
-<pre class="programtext">        nunit nunit.tests.dll /runselected</pre>
-</p>
-<p><b>Note:</b> If no selection has been saved, this option works just like <b>/run</b>.
-<h4>Specifying which Configuration to Load</h4>
-<p>When loading a Visual Studio project or an NUnit project, the first 
-	configuration found will be loaded by default. Usually this is Debug. The 
-	configuration loaded may be controlled using the <b>/config</b> switch. The 
-	following will load the Release configuration of the nunit.tests.dll:
-	<pre class="programtext">        nunit nunit.tests.csproj /config:Release</pre>
-</p>
-<p><b>Note:</b> This option has no effect when loading an assembly directly.</p>
-<h4>Specifying Multiple Assemblies</h4>
-<p>The forms interface does <b>not</b> currently provide for specifying more than 
-	one assembly on the command line. Multiple-assembly projects must be loaded by 
-	specifying the name of a Visual Studio solution file or an NUnit test project.</p>
-<h4>Clearing the ShadowCopy Cache</h4>
-<p>The <b>/cleanup</b> option erases the shadow copy cache and exits.
-<h4>Displaying Help</h4>
-<p>The <b>/help</b> or <b>/?</b> option displays a message box containing a brief 
-	help message.</p>
-
-</div>
-
-<!-- Submenu -->
-<div id="subnav">
-<ul>
-<li><a href="index.html">NUnit 2.5.9</a></li>
-<ul>
-<li><a href="getStarted.html">Getting&nbsp;Started</a></li>
-<li><a href="assertions.html">Assertions</a></li>
-<li><a href="constraintModel.html">Constraints</a></li>
-<li><a href="attributes.html">Attributes</a></li>
-<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
-<ul>
-<li><a href="nunit-console.html">Console&nbsp;Runner</a></li>
-<li><a href="nunit-gui.html">Gui&nbsp;Runner</a></li>
-<ul>
-<li id="current"><a href="guiCommandLine.html">Command-Line</a></li>
-<li><a href="mainMenu.html">Main&nbsp;Menu</a></li>
-<li><a href="contextMenu.html">Context&nbsp;Menu</a></li>
-<li><a href="settingsDialog.html">Settings&nbsp;Dialog</a></li>
-<li><a href="addinsDialog.html">Addins&nbsp;Dialog</a></li>
-<li><a href="testProperties.html">Test&nbsp;Properties</a></li>
-<li><a href="configEditor.html">Configuration&nbsp;Editor</a></li>
-<li><a href="projectEditor.html">Project&nbsp;Editor</a></li>
-</ul>
-<li><a href="pnunit.html">PNUnit&nbsp;Runner</a></li>
-<li><a href="runtimeSelection.html">Runtime&nbsp;Selection</a></li>
-<li><a href="assemblyIsolation.html">Assembly&nbsp;Isolation</a></li>
-<li><a href="configFiles.html">Configuration&nbsp;Files</a></li>
-<li><a href="multiAssembly.html">Multiple&nbsp;Assemblies</a></li>
-<li><a href="vsSupport.html">Visual&nbsp;Studio&nbsp;Support</a></li>
-</ul>
-<li><a href="extensibility.html">Extensibility</a></li>
-<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
-<li><a href="samples.html">Samples</a></li>
-<li><a href="license.html">License</a></li>
-</ul>
-</ul>
-</div>
-<!-- End of Submenu -->
-
-
-<!-- Standard Footer for NUnit.org -->
-<div id="footer">
-  Copyright &copy; 2010 Charlie Poole. All Rights Reserved.
-</div>
-<!-- End of Footer -->
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/identityAsserts.html
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/identityAsserts.html b/lib/NUnit.org/NUnit/2.5.9/doc/identityAsserts.html
deleted file mode 100644
index 96f0a37..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/identityAsserts.html
+++ /dev/null
@@ -1,97 +0,0 @@
-<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-<!-- Standard Head Part -->
-<head>
-<title>NUnit - IdentityAsserts</title>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta http-equiv="Content-Language" content="en-US">
-<link rel="stylesheet" type="text/css" href="nunit.css">
-<link rel="shortcut icon" href="favicon.ico">
-</head>
-<!-- End Standard Head Part -->
-
-<body>
-
-<!-- Standard Header for NUnit.org -->
-<div id="header">
-  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
-  <div id="nav">
-    <a href="http://www.nunit.org">NUnit</a>
-    <a class="active" href="index.html">Documentation</a>
-  </div>
-</div>
-<!-- End of Header -->
-
-<div id="content">
-
-<h2>Identity Asserts</h2>
-
-<p><b>Assert.AreSame</b> and <b>Assert.AreNotSame</b> test whether the same objects are 
-referenced by the two arguments.</p> 
-
-<div class="code" style="width: 36em" >
-<pre>Assert.AreSame( object expected, object actual );
-Assert.AreSame( object expected, object actual, string message );
-Assert.AreSame( object expected, object actual, string message, 
-                params object[] parms );
-
-Assert.AreNotSame( object expected, object actual );
-Assert.AreNotSame( object expected, object actual, string message );
-Assert.AreNotSame( object expected, object actual, string message, 
-                params object[] parms );</pre>
-</div>
-
-<p><b>Assert.Contains</b> is used to test whether an object is contained in an array 
-or list.</p>
-
-<div class="code" width="36em">
-<pre>Assert.Contains( object anObject, IList collection );
-Assert.Contains( object anObject, IList collection, 
-                string message );
-Assert.Contains( object anObject, IList collection,
-                string message, params object[] parms );</pre>
-</div>
-
-</div>
-
-<!-- Submenu -->
-<div id="subnav">
-<ul>
-<li><a href="index.html">NUnit 2.5.9</a></li>
-<ul>
-<li><a href="getStarted.html">Getting&nbsp;Started</a></li>
-<li><a href="assertions.html">Assertions</a></li>
-<ul>
-<li><a href="equalityAsserts.html">Equality&nbsp;Asserts</a></li>
-<li id="current"><a href="identityAsserts.html">Identity&nbsp;Asserts</a></li>
-<li><a href="conditionAsserts.html">Condition&nbsp;Asserts</a></li>
-<li><a href="comparisonAsserts.html">Comparison&nbsp;Asserts</a></li>
-<li><a href="typeAsserts.html">Type&nbsp;Asserts</a></li>
-<li><a href="exceptionAsserts.html">Exception&nbsp;Asserts</a></li>
-<li><a href="utilityAsserts.html">Utility&nbsp;Methods</a></li>
-<li><a href="stringAssert.html">String&nbsp;Assert</a></li>
-<li><a href="collectionAssert.html">Collection&nbsp;Assert</a></li>
-<li><a href="fileAssert.html">File&nbsp;Assert</a></li>
-<li><a href="directoryAssert.html">Directory&nbsp;Assert</a></li>
-</ul>
-<li><a href="constraintModel.html">Constraints</a></li>
-<li><a href="attributes.html">Attributes</a></li>
-<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
-<li><a href="extensibility.html">Extensibility</a></li>
-<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
-<li><a href="samples.html">Samples</a></li>
-<li><a href="license.html">License</a></li>
-</ul>
-</ul>
-</div>
-<!-- End of Submenu -->
-
-
-<!-- Standard Footer for NUnit.org -->
-<div id="footer">
-  Copyright &copy; 2010 Charlie Poole. All Rights Reserved.
-</div>
-<!-- End of Footer -->
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/ignore.html
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/ignore.html b/lib/NUnit.org/NUnit/2.5.9/doc/ignore.html
deleted file mode 100644
index 060dd41..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/ignore.html
+++ /dev/null
@@ -1,267 +0,0 @@
-<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-<!-- Standard Head Part -->
-<head>
-<title>NUnit - Ignore</title>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta http-equiv="Content-Language" content="en-US">
-<link rel="stylesheet" type="text/css" href="nunit.css">
-<link rel="shortcut icon" href="favicon.ico">
-</head>
-<!-- End Standard Head Part -->
-
-<body>
-
-<!-- Standard Header for NUnit.org -->
-<div id="header">
-  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
-  <div id="nav">
-    <a href="http://www.nunit.org">NUnit</a>
-    <a class="active" href="index.html">Documentation</a>
-  </div>
-</div>
-<!-- End of Header -->
-
-<div id="content">
-
-<script language="JavaScript" src="codeFuncs.js" ></script> <!-- Do it this way for IE -->
-
-<h3>IgnoreAttribute (NUnit 2.0)</h3>
-
-<p>The ignore attribute is an attribute to not run a test or test fixture for a 
-	period of time. The person marks either a Test or a TestFixture with the Ignore 
-	Attribute. The running program sees the attribute and does not run the test or 
-	tests. The progress bar will turn yellow if a test is not run and the test will 
-	be mentioned in the reports that it was not run.</p>
-
-<p>This feature should be used to temporarily not run a test or fixture. This is a 
-	better mechanism than commenting out the test or renaming methods, since the 
-	tests will be compiled with the rest of the code and there is an indication at 
-	run time that a test is not being run. This insures that tests will not be 
-	forgotten.</p>
-
-<h4>Test Fixture Syntax</h4>
-
-<div class="code">
-
-<div class="langFilter">
-	<a href="javascript:Show('DD1')" onmouseover="Show('DD1')"><img src="img/langFilter.gif" width="14" height="14" alt="Language Filter"></a>
-	<div id="DD1" class="dropdown" style="display: none;" onclick="Hide('DD1')">
-		<a href="javascript:ShowCS()">C#</a><br>
-		<a href="javascript:ShowVB()">VB</a><br>
-		<a href="javascript:ShowMC()">C++</a><br>
-		<a href="javascript:ShowJS()">J#</a><br>
-	</div>
-</div>
-
-<pre class="cs">namespace NUnit.Tests
-{
-  using System;
-  using NUnit.Framework;
-
-  [TestFixture]
-  [Ignore(&quot;Ignore a fixture&quot;)]
-  public class SuccessTests
-  {
-    // ...
-  }
-}
-</pre>
-
-<pre class="vb">Imports System
-Imports Nunit.Framework
-
-Namespace Nunit.Tests
-
-  &lt;TestFixture(), Ignore(&quot;Ignore a fixture&quot;)&gt;
-  Public Class SuccessTests
-    &#39; ...
-  End Class
-End Namespace
-</pre>
-
-<pre class="mc">#using &lt;Nunit.Framework.dll&gt;
-using namespace System;
-using namespace NUnit::Framework;
-
-namespace NUnitTests
-{
-  [TestFixture]
-  [Ignore(&quot;Ignore a fixture&quot;)]
-  public __gc class SuccessTests
-  {
-    // ...
-  };
-}
-
-#include &quot;cppsample.h&quot;
-
-namespace NUnitTests {
-  // ...
-}
-</pre>
-
-<pre class="js">package NUnit.Tests;
-
-import System.*;
-import NUnit.Framework.TestFixture;
-
-
-/** @attribute NUnit.Framework.TestFixture() */
-/** @attribute NUnit.Framework.Ignore(&quot;Ignore a fixture&quot;) */
-public class SuccessTests
-{
-  // ...
-}
-</pre>
-	
-</div>
-
-<h4>Test Syntax</h4>
-
-<div class="code">
-
-<div class="langFilter">
-	<a href="javascript:Show('DD2')" onmouseover="Show('DD2')"><img src="img/langFilter.gif" width="14" height="14" alt="Language Filter"></a>
-	<div id="DD2" class="dropdown" style="display: none;" onclick="Hide('DD2')">
-		<a href="javascript:ShowCS()">C#</a><br>
-		<a href="javascript:ShowVB()">VB</a><br>
-		<a href="javascript:ShowMC()">C++</a><br>
-		<a href="javascript:ShowJS()">J#</a><br>
-	</div>
-</div>
-
-<pre class="cs">namespace NUnit.Tests
-{
-  using System;
-  using NUnit.Framework;
-
-  [TestFixture]
-  public class SuccessTests
-  {
-    [Test]
-    [Ignore(&quot;Ignore a test&quot;)]
-    public void IgnoredTest()
-    { /* ... */ }
-}
-</pre>
-
-<pre class="vb">Imports System
-Imports Nunit.Framework
-
-Namespace Nunit.Tests
-
-  &lt;TestFixture()&gt;
-  Public Class SuccessTests
-    &lt;Test(), Ignore(&quot;Ignore a test&quot;)&gt; Public Sub Ignored()
-      &#39; ...
-    End Sub
-  End Class
-End Namespace
-</pre>
-
-<pre class="mc">#using &lt;Nunit.Framework.dll&gt;
-using namespace System;
-using namespace NUnit::Framework;
-
-namespace NUnitTests
-{
-  [TestFixture]
-  public __gc class SuccessTests
-  {
-    [Test][Ignore(&quot;Ignore a test&quot;)] void IgnoredTest();
-  };
-}
-
-#include &quot;cppsample.h&quot;
-
-namespace NUnitTests {
-  // ...
-}
-</pre>
-
-<pre class="js">package NUnit.Tests;
-
-import System.*;
-import NUnit.Framework.TestFixture;
-
-
-/** @attribute NUnit.Framework.TestFixture() */
-public class SuccessTests
-{
-  /** @attribute NUnit.Framework.Test() */
-  /** @attribute NUnit.Framework.Ignore(&quot;ignored test&quot;) */
-  public void IgnoredTest()
-  { /* ... */ }
-}
-</pre>
-
-</div>
-
-</div>
-
-<!-- Submenu -->
-<div id="subnav">
-<ul>
-<li><a href="index.html">NUnit 2.5.9</a></li>
-<ul>
-<li><a href="getStarted.html">Getting&nbsp;Started</a></li>
-<li><a href="assertions.html">Assertions</a></li>
-<li><a href="constraintModel.html">Constraints</a></li>
-<li><a href="attributes.html">Attributes</a></li>
-<ul>
-<li><a href="category.html">Category</a></li>
-<li><a href="combinatorial.html">Combinatorial</a></li>
-<li><a href="culture.html">Culture</a></li>
-<li><a href="datapoint.html">Datapoint(s)</a></li>
-<li><a href="description.html">Description</a></li>
-<li><a href="exception.html">Exception</a></li>
-<li><a href="explicit.html">Explicit</a></li>
-<li id="current"><a href="ignore.html">Ignore</a></li>
-<li><a href="maxtime.html">Maxtime</a></li>
-<li><a href="pairwise.html">Pairwise</a></li>
-<li><a href="platform.html">Platform</a></li>
-<li><a href="property.html">Property</a></li>
-<li><a href="random.html">Random</a></li>
-<li><a href="range.html">Range</a></li>
-<li><a href="repeat.html">Repeat</a></li>
-<li><a href="requiredAddin.html">RequiredAddin</a></li>
-<li><a href="requiresMTA.html">Requires&nbsp;MTA</a></li>
-<li><a href="requiresSTA.html">Requires&nbsp;STA</a></li>
-<li><a href="requiresThread.html">Requires&nbsp;Thread</a></li>
-<li><a href="sequential.html">Sequential</a></li>
-<li><a href="setCulture.html">SetCulture</a></li>
-<li><a href="setup.html">Setup</a></li>
-<li><a href="setupFixture.html">SetupFixture</a></li>
-<li><a href="suite.html">Suite</a></li>
-<li><a href="teardown.html">Teardown</a></li>
-<li><a href="test.html">Test</a></li>
-<li><a href="testCase.html">TestCase</a></li>
-<li><a href="testCaseSource.html">TestCaseSource</a></li>
-<li><a href="testFixture.html">TestFixture</a></li>
-<li><a href="fixtureSetup.html">TestFixtureSetUp</a></li>
-<li><a href="fixtureTeardown.html">TestFixtureTearDown</a></li>
-<li><a href="theory.html">Theory</a></li>
-<li><a href="timeout.html">Timeout</a></li>
-<li><a href="values.html">Values</a></li>
-<li><a href="valueSource.html">ValueSource</a></li>
-</ul>
-<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
-<li><a href="extensibility.html">Extensibility</a></li>
-<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
-<li><a href="samples.html">Samples</a></li>
-<li><a href="license.html">License</a></li>
-</ul>
-</ul>
-</div>
-<!-- End of Submenu -->
-
-
-<!-- Standard Footer for NUnit.org -->
-<div id="footer">
-  Copyright &copy; 2010 Charlie Poole. All Rights Reserved.
-</div>
-<!-- End of Footer -->
-
-</body>
-</html>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/addinsDialog.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/addinsDialog.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/addinsDialog.jpg
deleted file mode 100644
index 01e2b15..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/addinsDialog.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/advancedSettings.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/advancedSettings.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/advancedSettings.jpg
deleted file mode 100644
index 74b83d4..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/advancedSettings.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/assembliesTab.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/assembliesTab.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/assembliesTab.jpg
deleted file mode 100644
index cb20495..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/assembliesTab.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/assemblyReloadSettings.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/assemblyReloadSettings.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/assemblyReloadSettings.jpg
deleted file mode 100644
index 42f1b0f..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/assemblyReloadSettings.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/bulletOff.gif
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/bulletOff.gif b/lib/NUnit.org/NUnit/2.5.9/doc/img/bulletOff.gif
deleted file mode 100644
index c709ef4..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/bulletOff.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/bulletOn.gif
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/bulletOn.gif b/lib/NUnit.org/NUnit/2.5.9/doc/img/bulletOn.gif
deleted file mode 100644
index a565da5..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/bulletOn.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/configEditor.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/configEditor.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/configEditor.jpg
deleted file mode 100644
index 81b6f3d..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/configEditor.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/console-mock.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/console-mock.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/console-mock.jpg
deleted file mode 100644
index 103cb5d..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/console-mock.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/generalSettings.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/generalSettings.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/generalSettings.jpg
deleted file mode 100644
index 8a197e7..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/generalSettings.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/generalTab.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/generalTab.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/generalTab.jpg
deleted file mode 100644
index 0e2273c..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/generalTab.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/gui-screenshot.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/gui-screenshot.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/gui-screenshot.jpg
deleted file mode 100644
index 88224ce..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/gui-screenshot.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/gui-verify.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/gui-verify.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/gui-verify.jpg
deleted file mode 100644
index d8cbc96..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/gui-verify.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/internalTraceSettings.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/internalTraceSettings.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/internalTraceSettings.jpg
deleted file mode 100644
index e47d1bb..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/internalTraceSettings.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/langFilter.gif
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/langFilter.gif b/lib/NUnit.org/NUnit/2.5.9/doc/img/langFilter.gif
deleted file mode 100644
index 7cdf454..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/langFilter.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/logo.gif
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/logo.gif b/lib/NUnit.org/NUnit/2.5.9/doc/img/logo.gif
deleted file mode 100644
index 7540a66..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/logo.gif and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/miniGui.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/miniGui.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/miniGui.jpg
deleted file mode 100644
index 6c5e703..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/miniGui.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/testLoadSettings.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/testLoadSettings.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/testLoadSettings.jpg
deleted file mode 100644
index 146325f..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/testLoadSettings.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/testOutputSettings.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/testOutputSettings.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/testOutputSettings.jpg
deleted file mode 100644
index 390ee90..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/testOutputSettings.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/testProperties.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/testProperties.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/testProperties.jpg
deleted file mode 100644
index ad02778..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/testProperties.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/testResultSettings.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/testResultSettings.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/testResultSettings.jpg
deleted file mode 100644
index bd3f796..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/testResultSettings.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/textOutputSettings.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/textOutputSettings.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/textOutputSettings.jpg
deleted file mode 100644
index df846b9..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/textOutputSettings.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/treeDisplaySettings.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/treeDisplaySettings.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/treeDisplaySettings.jpg
deleted file mode 100644
index 113c662..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/treeDisplaySettings.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/img/visualStudioSettings.jpg
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/img/visualStudioSettings.jpg b/lib/NUnit.org/NUnit/2.5.9/doc/img/visualStudioSettings.jpg
deleted file mode 100644
index 75800c5..0000000
Binary files a/lib/NUnit.org/NUnit/2.5.9/doc/img/visualStudioSettings.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/f63ba31d/lib/NUnit.org/NUnit/2.5.9/doc/index.html
----------------------------------------------------------------------
diff --git a/lib/NUnit.org/NUnit/2.5.9/doc/index.html b/lib/NUnit.org/NUnit/2.5.9/doc/index.html
deleted file mode 100644
index 9f518bf..0000000
--- a/lib/NUnit.org/NUnit/2.5.9/doc/index.html
+++ /dev/null
@@ -1,77 +0,0 @@
-<!-- saved from url=(0014)about:internet --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-<!-- Standard Head Part -->
-<head>
-<title>NUnit - DocHome</title>
-<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
-<meta http-equiv="Content-Language" content="en-US">
-<link rel="stylesheet" type="text/css" href="nunit.css">
-<link rel="shortcut icon" href="favicon.ico">
-</head>
-<!-- End Standard Head Part -->
-
-<body>
-
-<!-- Standard Header for NUnit.org -->
-<div id="header">
-  <a id="logo" href="http://www.nunit.org"><img src="img/logo.gif" alt="NUnit.org" title="NUnit.org"></a>
-  <div id="nav">
-    <a href="http://www.nunit.org">NUnit</a>
-    <a class="active" href="index.html">Documentation</a>
-  </div>
-</div>
-<!-- End of Header -->
-
-<div id="content">
-
-<h2>NUnit 2.5.9</h2>
-	
-<p>This documentation covers the NUnit 2.5.9 release, 
-   introducing a large set of new features to NUnit, particularly in
-   the area of parameterized or data-driven testing.
-
-<p>Where applicable, we have marked sections with the version in which a feature 
-   first appeared.</p>
-
-<p>If you are new to NUnit, we suggest you begin by reading the 
-	<a href="getStarted.html">Getting Started</a> section of this site.
-	 Those who have used earlier releases may want to begin with the 
-	<a href="upgrade.html">Upgrading</a> section.</p>
-
-<p>See the 
-   <a href="releaseNotes.html">Release Notes</a>   for more information on this release.</p>
-
-<p>All documentation is included in the release packages of NUnit. Beginning with NUnit 
-2.4.2, you may choose to <a href="http://www.nunit.org/download.html">download</a> the documentation
-separately.</p>
-
-</div>
-
-<!-- Submenu -->
-<div id="subnav">
-<ul>
-<li id="current"><a href="index.html">NUnit 2.5.9</a></li>
-<ul>
-<li><a href="getStarted.html">Getting&nbsp;Started</a></li>
-<li><a href="assertions.html">Assertions</a></li>
-<li><a href="constraintModel.html">Constraints</a></li>
-<li><a href="attributes.html">Attributes</a></li>
-<li><a href="runningTests.html">Running&nbsp;Tests</a></li>
-<li><a href="extensibility.html">Extensibility</a></li>
-<li><a href="releaseNotes.html">Release&nbsp;Notes</a></li>
-<li><a href="samples.html">Samples</a></li>
-<li><a href="license.html">License</a></li>
-</ul>
-</ul>
-</div>
-<!-- End of Submenu -->
-
-
-<!-- Standard Footer for NUnit.org -->
-<div id="footer">
-  Copyright &copy; 2010 Charlie Poole. All Rights Reserved.
-</div>
-<!-- End of Footer -->
-
-</body>
-</html>