Commit ecd1eaaf authored by Marc Gravell's avatar Marc Gravell

NUnit package update

parent 46bc7cdc
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NuGet.CommandLine" version="2.8.3" />
<package id="Redis-64" version="2.8.17" />
<package id="redis-64" version="2.8.17" />
</packages>
\ No newline at end of file
......@@ -35,8 +35,9 @@
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Reference Include="nunit.framework">
<HintPath>..\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
<Reference Include="nunit.framework, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
......
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NUnit" version="2.6.3" targetFramework="net45" />
<package id="NUnit" version="2.6.4" targetFramework="net45" />
</packages>
\ No newline at end of file
......@@ -56,8 +56,9 @@
<Reference Include="Moq">
<HintPath>..\packages\Moq.4.2.1409.1722\lib\net40\Moq.dll</HintPath>
</Reference>
<Reference Include="nunit.framework">
<HintPath>..\StackExchange.Redis\packages\NUnit.2.6.3\lib\nunit.framework.dll</HintPath>
<Reference Include="nunit.framework, Version=2.6.4.14350, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
......
......@@ -2,5 +2,5 @@
<packages>
<package id="BookSleeve" version="1.3.41" targetFramework="net45" />
<package id="Moq" version="4.2.1409.1722" targetFramework="net45" />
<package id="NUnit" version="2.6.3" targetFramework="net45" />
<package id="NUnit" version="2.6.4" targetFramework="net45" />
</packages>
\ No newline at end of file
......@@ -3581,49 +3581,49 @@
</member>
<member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
<summary>
Asserts that superset is not a subject of subset.
Asserts that the superset does not contain the subset
</summary>
<param name="subset">The IEnumerable superset to be considered</param>
<param name="superset">The IEnumerable subset to be considered</param>
<param name="subset">The IEnumerable subset to be considered</param>
<param name="superset">The IEnumerable superset to be considered</param>
</member>
<member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
<summary>
Asserts that superset is not a subject of subset.
Asserts that the superset does not contain the subset
</summary>
<param name="subset">The IEnumerable superset to be considered</param>
<param name="superset">The IEnumerable subset to be considered</param>
<param name="subset">The IEnumerable subset to be considered</param>
<param name="superset">The IEnumerable superset to be considered</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:NUnit.Framework.CollectionAssert.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
<summary>
Asserts that superset is not a subject of subset.
Asserts that the superset does not contain the subset
</summary>
<param name="subset">The IEnumerable superset to be considered</param>
<param name="superset">The IEnumerable subset to be considered</param>
<param name="subset">The IEnumerable subset to be considered</param>
<param name="superset">The IEnumerable superset to be considered</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
<summary>
Asserts that superset is a subset of subset.
Asserts that the superset contains the subset.
</summary>
<param name="subset">The IEnumerable superset to be considered</param>
<param name="superset">The IEnumerable subset to be considered</param>
<param name="subset">The IEnumerable subset to be considered</param>
<param name="superset">The IEnumerable superset to be considered</param>
</member>
<member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
<summary>
Asserts that superset is a subset of subset.
Asserts that the superset contains the subset.
</summary>
<param name="subset">The IEnumerable superset to be considered</param>
<param name="superset">The IEnumerable subset to be considered</param>
<param name="subset">The IEnumerable subset to be considered</param>
<param name="superset">The IEnumerable superset to be considered</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:NUnit.Framework.CollectionAssert.IsSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
<summary>
Asserts that superset is a subset of subset.
Asserts that the superset contains the subset.
</summary>
<param name="subset">The IEnumerable superset to be considered</param>
<param name="superset">The IEnumerable subset to be considered</param>
<param name="subset">The IEnumerable subset to be considered</param>
<param name="superset">The IEnumerable superset to be considered</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
......@@ -6551,6 +6551,23 @@
</summary>
<returns>The target for the action attribute</returns>
</member>
<member name="M:NUnit.Framework.TestActionAttribute.BeforeTest(NUnit.Framework.TestDetails)">
<summary>
Method called before each test
</summary>
<param name="testDetails">Info about the test to be run</param>
</member>
<member name="M:NUnit.Framework.TestActionAttribute.AfterTest(NUnit.Framework.TestDetails)">
<summary>
Method called after each test
</summary>
<param name="testDetails">Info about the test that was just run</param>
</member>
<member name="P:NUnit.Framework.TestActionAttribute.Targets">
<summary>
Gets or sets the ActionTargets for this attribute
</summary>
</member>
<member name="T:NUnit.Framework.TestAttribute">
<summary>
Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
......@@ -8066,7 +8083,7 @@
presence of a particular attribute on an object.
</summary>
</member>
<member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(NUnit.Framework.Constraints.Constraint)">
<member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(NUnit.Framework.Constraints.IResolveConstraint)">
<summary>
Returns the constraint provided as an argument - used to allow custom
custom constraints to easily participate in the syntax.
......@@ -10352,6 +10369,13 @@
<param name="actual">The value to be tested</param>
<returns>True if no exception is thrown, otherwise false</returns>
</member>
<member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.Matches``1(NUnit.Framework.Constraints.ActualValueDelegate{``0})">
<summary>
Test whether the constraint is satisfied by a given delegate
</summary>
<param name="del">Delegate returning the value to be tested</param>
<returns>True if no exception is thrown, otherwise false</returns>
</member>
<member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
<summary>
Write the constraint description to a MessageWriter
......
Copyright © 2002-2013 Charlie Poole
Copyright © 2002-2014 Charlie Poole
Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov
Copyright © 2000-2002 Philip A. Craig
......@@ -8,7 +8,7 @@ Permission is granted to anyone to use this software for any purpose, including
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
Portions Copyright © 2002-2014 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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment