110 changed files with 457 additions and 14723 deletions
@ -1,4 +1,5 @@ |
|||
FSharp.Formatting |
|||
Microsoft.AspNet.Razor |
|||
RazorEngine |
|||
FSharp.Compiler.Service |
|||
group Build |
|||
FSharp.Formatting |
|||
Microsoft.AspNet.Razor |
|||
RazorEngine |
|||
FSharp.Compiler.Service |
|||
|
|||
@ -1,2 +1 @@ |
|||
repositories.config text |
|||
* -text |
|||
|
|||
Binary file not shown.
@ -1,24 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?> |
|||
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd"> |
|||
<metadata> |
|||
<id>FsUnit</id> |
|||
<version>1.3.1.0</version> |
|||
<authors>Ray Vernagus and Daniel Mohl</authors> |
|||
<owners>Ray Vernagus and Daniel Mohl</owners> |
|||
<licenseUrl>http://github.com/fsprojects/FsUnit/blob/master/LICENSE.txt</licenseUrl> |
|||
<projectUrl>http://github.com/fsprojects/FsUnit</projectUrl> |
|||
<iconUrl>https://raw.githubusercontent.com/fsprojects/FsUnit/master/docs/files/img/logo.png</iconUrl> |
|||
<description>FsUnit is a set of extensions that add special testing syntax to NUnit.</description> |
|||
<summary>The goals of FsUnit are to make unit-testing feel more functional while leverage existing testing frameworks.</summary> |
|||
<releaseNotes>Bump NUnit version up to 2.6.4 |
|||
Bump xUnit version up to 1.9.2 |
|||
Bump MbUnit version up to 3.4.14 |
|||
Migration to Paket |
|||
Readme and samples converted to FsUnit site</releaseNotes> |
|||
<copyright>Copyright 2015</copyright> |
|||
<tags>F# fsharp NUnit FsUnit</tags> |
|||
<dependencies> |
|||
<dependency id="NUnit" version="[2.6.4]" /> |
|||
</dependencies> |
|||
</metadata> |
|||
</package> |
|||
@ -1,10 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?> |
|||
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"> |
|||
<Default Extension="dll" ContentType="application/octet" /> |
|||
<Default Extension="pdb" ContentType="application/octet" /> |
|||
<Default Extension="xml" ContentType="application/octet" /> |
|||
<Default Extension="ps1" ContentType="application/octet" /> |
|||
<Default Extension="nuspec" ContentType="application/octet" /> |
|||
<Default Extension="psmdcp" ContentType="application/vnd.openxmlformats-package.core-properties+xml" /> |
|||
<Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /> |
|||
</Types> |
|||
@ -1,5 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?> |
|||
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"> |
|||
<Relationship Type="http://schemas.microsoft.com/packaging/2010/07/manifest" Target="/FsUnit.nuspec" Id="nuspec" /> |
|||
<Relationship Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="/package/services/metadata/core-properties/coreProp.psmdcp" Id="coreProp" /> |
|||
</Relationships> |
|||
Binary file not shown.
Binary file not shown.
@ -1,6 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<doc> |
|||
<assembly><name>FsUnit.CustomMatchers</name></assembly> |
|||
<members> |
|||
</members> |
|||
</doc> |
|||
@ -1,304 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<doc> |
|||
<assembly><name>FsUnit.NUnit</name></assembly> |
|||
<members> |
|||
<member name="M:FsUnit.Assert.Null``1(``0,System.String,System.Object[])"> |
|||
<summary> |
|||
Verifies that the object that is passed in is equal to 'null'. |
|||
If the object is not 'null', then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg">The object that is to be tested.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
<param name="args">Array of objects to be used in formatting the message.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.Null``1(``0,System.String)"> |
|||
<summary> |
|||
Verifies that the object that is passed in is equal to 'null'. |
|||
If the object is not 'null', then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg">The object that is to be tested.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.Null``1(``0)"> |
|||
<summary> |
|||
Verifies that the object that is passed in is equal to 'null'. |
|||
If the object is not 'null', then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg">The object that is to be tested.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.NotNull``1(``0,System.String,System.Object[])"> |
|||
<summary> |
|||
Verifies that the object that is passed in is not equal to 'null'. |
|||
If the object is 'null', then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg">The object that is to be tested.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
<param name="args">Array of objects to be used in formatting the message.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.NotNull``1(``0,System.String)"> |
|||
<summary> |
|||
Verifies that the object that is passed in is not equal to 'null'. |
|||
If the object is 'null', then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg">The object that is to be tested.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.NotNull``1(``0)"> |
|||
<summary> |
|||
Verifies that the object that is passed in is not equal to 'null'. |
|||
If the object is 'null', then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg">The object that is to be tested.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.LessOrEqual``1(``0,``0,System.String,System.Object[])"> |
|||
<summary> |
|||
Verifies that the first value is less than or equal to the second value. |
|||
If it is not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg1">The first value, expected to be less.</param> |
|||
<param name="arg2">The second value, expected to be greater.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
<param name="args">Array of objects to be used in formatting the message.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.LessOrEqual``1(``0,``0,System.String)"> |
|||
<summary> |
|||
Verifies that the first value is less than or equal to the second value. |
|||
If it is not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg1">The first value, expected to be less.</param> |
|||
<param name="arg2">The second value, expected to be greater.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.LessOrEqual``1(``0,``0)"> |
|||
<summary> |
|||
Verifies that the first value is less than or equal to the second value. |
|||
If it is not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg1">The first value, expected to be less.</param> |
|||
<param name="arg2">The second value, expected to be greater.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.Less``1(``0,``0,System.String,System.Object[])"> |
|||
<summary> |
|||
Verifies that the first value is less than the second value. |
|||
If it is not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg1">The first value, expected to be less.</param> |
|||
<param name="arg2">The second value, expected to be greater.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
<param name="args">Array of objects to be used in formatting the message.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.Less``1(``0,``0,System.String)"> |
|||
<summary> |
|||
Verifies that the first value is less than the second value. |
|||
If it is not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg1">The first value, expected to be less.</param> |
|||
<param name="arg2">The second value, expected to be greater.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.Less``1(``0,``0)"> |
|||
<summary> |
|||
Verifies that the first value is less than the second value. |
|||
If it is not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg1">The first value, expected to be less.</param> |
|||
<param name="arg2">The second value, expected to be greater.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.GreaterOrEqual``1(``0,``0,System.String,System.Object[])"> |
|||
<summary> |
|||
Verifies that the first value is greater than or equal to than the second value. |
|||
If it is not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg1">The first value, expected to be greater.</param> |
|||
<param name="arg2">The second value, expected to be less.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
<param name="args">Array of objects to be used in formatting the message.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.GreaterOrEqual``1(``0,``0,System.String)"> |
|||
<summary> |
|||
Verifies that the first value is greater than or equal to than the second value. |
|||
If it is not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg1">The first value, expected to be greater.</param> |
|||
<param name="arg2">The second value, expected to be less.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.GreaterOrEqual``1(``0,``0)"> |
|||
<summary> |
|||
Verifies that the first value is greater than or equal to than the second value. |
|||
If it is not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg1">The first value, expected to be greater.</param> |
|||
<param name="arg2">The second value, expected to be less.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.Greater``1(``0,``0,System.String,System.Object[])"> |
|||
<summary> |
|||
Verifies that the first value is greater than the second value. |
|||
If it is not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg1">The first value, expected to be greater.</param> |
|||
<param name="arg2">The second value, expected to be less.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
<param name="args">Array of objects to be used in formatting the message.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.Greater``1(``0,``0,System.String)"> |
|||
<summary> |
|||
Verifies that the first value is greater than the second value. |
|||
If it is not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg1">The first value, expected to be greater.</param> |
|||
<param name="arg2">The second value, expected to be less.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.Greater``1(``0,``0)"> |
|||
<summary> |
|||
Verifies that the first value is greater than the second value. |
|||
If it is not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="arg1">The first value, expected to be greater.</param> |
|||
<param name="arg2">The second value, expected to be less.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.Contains``1(``0,System.Collections.Generic.ICollection{``0},System.String,System.Object[])"> |
|||
<summary> |
|||
Asserts that an object is contained in a list. |
|||
</summary> |
|||
<param name="expected">The expected object.</param> |
|||
<param name="actual">The list to be examined.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
<param name="args">Array of objects to be used in formatting the message.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.Contains``1(``0,System.Collections.Generic.ICollection{``0},System.String)"> |
|||
<summary> |
|||
Asserts that an object is contained in a list. |
|||
</summary> |
|||
<param name="expected">The expected object.</param> |
|||
<param name="actual">The list to be examined.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.Contains``1(``0,System.Collections.Generic.ICollection{``0})"> |
|||
<summary> |
|||
Asserts that an object is contained in a list. |
|||
</summary> |
|||
<param name="expected">The expected object.</param> |
|||
<param name="actual">The list to be examined.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.AreSame``1(``0,``0,System.String,System.Object[])"> |
|||
<summary> |
|||
Asserts that two objects refer to the same object. |
|||
If they are not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="expected">The expected object.</param> |
|||
<param name="actual">The actual object.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
<param name="args">Array of objects to be used in formatting the message.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.AreSame``1(``0,``0,System.String)"> |
|||
<summary> |
|||
Asserts that two objects refer to the same object. |
|||
If they are not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="expected">The expected object.</param> |
|||
<param name="actual">The actual object.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.AreSame``1(``0,``0)"> |
|||
<summary> |
|||
Asserts that two objects refer to the same object. |
|||
If they are not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="expected">The expected object.</param> |
|||
<param name="actual">The actual object.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.AreNotSame``1(``0,``0,System.String,System.Object[])"> |
|||
<summary> |
|||
Asserts that two objects do not refer to the same object. |
|||
If they are not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="expected">The expected object.</param> |
|||
<param name="actual">The actual object.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
<param name="args">Array of objects to be used in formatting the message.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.AreNotSame``1(``0,``0,System.String)"> |
|||
<summary> |
|||
Asserts that two objects do not refer to the same object. |
|||
If they are not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="expected">The expected object.</param> |
|||
<param name="actual">The actual object.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.AreNotSame``1(``0,``0)"> |
|||
<summary> |
|||
Asserts that two objects do not refer to the same object. |
|||
If they are not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="expected">The expected object.</param> |
|||
<param name="actual">The actual object.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.AreNotEqual``1(``0,``0,System.String,System.Object[])"> |
|||
<summary> |
|||
Verifies that two values are not equal. |
|||
If they are, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="expected">The expected value.</param> |
|||
<param name="actual">The actual value.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
<param name="args">Array of objects to be used in formatting the message.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.AreNotEqual``1(``0,``0,System.String)"> |
|||
<summary> |
|||
Verifies that two values are not equal. |
|||
If they are, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="expected">The expected value.</param> |
|||
<param name="actual">The actual value.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.AreNotEqual``1(``0,``0)"> |
|||
<summary> |
|||
Verifies that two values are not equal. |
|||
If they are, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="expected">The expected value.</param> |
|||
<param name="actual">The actual value.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.AreEqual``1(``0,``0,System.String,System.Object[])"> |
|||
<summary> |
|||
Verifies that two values are equal. |
|||
If they are not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="expected">The expected value.</param> |
|||
<param name="actual">The actual value.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
<param name="args">Array of objects to be used in formatting the message.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.AreEqual``1(``0,``0,System.String)"> |
|||
<summary> |
|||
Verifies that two values are equal. |
|||
If they are not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="expected">The expected value.</param> |
|||
<param name="actual">The actual value.</param> |
|||
<param name="message">The message to display in case of failure.</param> |
|||
</member> |
|||
<member name="M:FsUnit.Assert.AreEqual``1(``0,``0)"> |
|||
<summary> |
|||
Verifies that two values are equal. |
|||
If they are not, then an NUnit.Framework.AssertException is thrown. |
|||
</summary> |
|||
<param name="expected">The expected value.</param> |
|||
<param name="actual">The actual value.</param> |
|||
</member> |
|||
<member name="T:FsUnit.Assert"> |
|||
<summary> |
|||
Generic test assertions. |
|||
</summary> |
|||
</member> |
|||
<member name="T:FsUnit.TopLevelOperators.FsUnitDepricated"> |
|||
<summary> |
|||
Deprecated operators. These will be removed in a future version of FsUnit. |
|||
</summary> |
|||
</member> |
|||
</members> |
|||
</doc> |
|||
Binary file not shown.
Binary file not shown.
@ -1,10 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?> |
|||
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
|||
<dc:creator>[Ray Vernagus and Daniel Mohl]</dc:creator> |
|||
<dc:description>FsUnit is a set of extensions that add special testing syntax to NUnit.</dc:description> |
|||
<dc:identifier>FsUnit</dc:identifier> |
|||
<version>Some(1.3.1.0)</version> |
|||
<keywords /> |
|||
<dc:title>FsUnit</dc:title> |
|||
<lastModifiedBy>paket</lastModifiedBy> |
|||
</Relationships> |
|||
@ -1,3 +0,0 @@ |
|||
param($rootPath, $toolsPath, $package, $project) |
|||
|
|||
Add-BindingRedirect $project.Name |
|||
@ -1,20 +0,0 @@ |
|||
<?xml version="1.0"?> |
|||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> |
|||
<metadata> |
|||
<id>NUnit.Runners</id> |
|||
<version>2.6.4</version> |
|||
<title>NUnit.Runners</title> |
|||
<authors>Charlie Poole</authors> |
|||
<owners>Charlie Poole</owners> |
|||
<licenseUrl>http://nunit.org/nuget/license.html</licenseUrl> |
|||
<projectUrl>http://nunit.org</projectUrl> |
|||
<iconUrl>http://nunit.org/nuget/nunit_32x32.png</iconUrl> |
|||
<requireLicenseAcceptance>false</requireLicenseAcceptance> |
|||
<description>NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests. |
|||
Version 2.6 is the seventh major release of this well-known and well-tested programming tool. |
|||
This package includes the NUnit console, gui and pnunit runners and is compatible with all NUnit framework versions 2.0 through 2.6. The NUnit project editor is also included.</description> |
|||
<summary>NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.</summary> |
|||
<language>en-US</language> |
|||
<tags>nunit test testing tdd runner</tags> |
|||
</metadata> |
|||
</package> |
|||
@ -1 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.microsoft.com/packaging/2010/07/manifest" Target="/NUnit.Runners.nuspec" Id="R0d17378df8294664" /><Relationship Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="/package/services/metadata/core-properties/b059142eec834861a3ac03c379fd19c5.psmdcp" Id="R4eccbe26eab04440" /></Relationships> |
|||
@ -1,15 +0,0 @@ |
|||
Copyright © 2002-2014 Charlie Poole |
|||
Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov |
|||
Copyright © 2000-2002 Philip A. Craig |
|||
|
|||
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. |
|||
|
|||
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: |
|||
|
|||
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required. |
|||
|
|||
Portions Copyright © 2002-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. |
|||
|
|||
3. This notice may not be removed or altered from any source distribution. |
|||
@ -1,4 +0,0 @@ |
|||
<AgentConfig> |
|||
<Port>8080</Port> |
|||
<PathToAssemblies>.</PathToAssemblies> |
|||
</AgentConfig> |
|||
@ -1,18 +0,0 @@ |
|||
<log4net> |
|||
<!-- A1 is set to be a ConsoleAppender --> |
|||
<appender name="A1" type="log4net.Appender.ConsoleAppender"> |
|||
|
|||
<!-- A1 uses PatternLayout --> |
|||
<layout type="log4net.Layout.PatternLayout"> |
|||
<!-- Print the date in ISO 8601 format --> |
|||
<conversionPattern value="%-5level %logger - %message%newline" /> |
|||
</layout> |
|||
</appender> |
|||
|
|||
<!-- Set root logger level to DEBUG and its only appender to A1 --> |
|||
<root> |
|||
<level value="Info" /> |
|||
<appender-ref ref="A1" /> |
|||
</root> |
|||
|
|||
</log4net> |
|||
@ -1,18 +0,0 @@ |
|||
<log4net> |
|||
<!-- A1 is set to be a ConsoleAppender --> |
|||
<appender name="A1" type="log4net.Appender.ConsoleAppender"> |
|||
|
|||
<!-- A1 uses PatternLayout --> |
|||
<layout type="log4net.Layout.PatternLayout"> |
|||
<!-- Print the date in ISO 8601 format --> |
|||
<conversionPattern value="%-5level %logger - %message%newline" /> |
|||
</layout> |
|||
</appender> |
|||
|
|||
<!-- Set root logger level to DEBUG and its only appender to A1 --> |
|||
<root> |
|||
<level value="Info" /> |
|||
<appender-ref ref="A1" /> |
|||
</root> |
|||
|
|||
</log4net> |
|||
|
Before Width: | Height: | Size: 761 B |
|
Before Width: | Height: | Size: 688 B |
|
Before Width: | Height: | Size: 734 B |
|
Before Width: | Height: | Size: 689 B |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,37 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<configuration> |
|||
<!-- |
|||
The .NET 2.0 build of nunit-agent only |
|||
runs under .NET 2.0 or higher. The setting |
|||
useLegacyV2RuntimeActivationPolicy only applies |
|||
under .NET 4.0 and permits use of mixed mode |
|||
assemblies, which would otherwise not load |
|||
correctly. |
|||
--> |
|||
<startup useLegacyV2RuntimeActivationPolicy="true"> |
|||
<!-- |
|||
Nunit-agent is normally run by the console or gui |
|||
runners and not independently. In normal usage, |
|||
the runner specifies which runtime should be used. |
|||
|
|||
Do NOT add any supportedRuntime elements here, |
|||
since they may prevent the runner from controlling |
|||
the runtime that is used! |
|||
--> |
|||
</startup> |
|||
|
|||
<runtime> |
|||
<!-- Ensure that test exceptions don't crash NUnit --> |
|||
<legacyUnhandledExceptionPolicy enabled="1" /> |
|||
|
|||
<!-- Run partial trust V2 assemblies in full trust under .NET 4.0 --> |
|||
<loadFromRemoteSources enabled="true" /> |
|||
|
|||
<!-- Look for addins in the addins directory for now --> |
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|||
<probing privatePath="lib;addins"/> |
|||
</assemblyBinding> |
|||
|
|||
</runtime> |
|||
|
|||
</configuration> |
|||
Binary file not shown.
@ -1,37 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<configuration> |
|||
<!-- |
|||
The .NET 2.0 build of nunit-agent only |
|||
runs under .NET 2.0 or higher. The setting |
|||
useLegacyV2RuntimeActivationPolicy only applies |
|||
under .NET 4.0 and permits use of mixed mode |
|||
assemblies, which would otherwise not load |
|||
correctly. |
|||
--> |
|||
<startup useLegacyV2RuntimeActivationPolicy="true"> |
|||
<!-- |
|||
Nunit-agent is normally run by the console or gui |
|||
runners and not independently. In normal usage, |
|||
the runner specifies which runtime should be used. |
|||
|
|||
Do NOT add any supportedRuntime elements here, |
|||
since they may prevent the runner from controlling |
|||
the runtime that is used! |
|||
--> |
|||
</startup> |
|||
|
|||
<runtime> |
|||
<!-- Ensure that test exceptions don't crash NUnit --> |
|||
<legacyUnhandledExceptionPolicy enabled="1" /> |
|||
|
|||
<!-- Run partial trust V2 assemblies in full trust under .NET 4.0 --> |
|||
<loadFromRemoteSources enabled="true" /> |
|||
|
|||
<!-- Look for addins in the addins directory for now --> |
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|||
<probing privatePath="lib;addins"/> |
|||
</assemblyBinding> |
|||
|
|||
</runtime> |
|||
|
|||
</configuration> |
|||
Binary file not shown.
@ -1,24 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<configuration> |
|||
<!-- |
|||
The .NET 2.0 build of the console runner only |
|||
runs under .NET 2.0 or higher. The setting |
|||
useLegacyV2RuntimeActivationPolicy only applies |
|||
under .NET 4.0 and permits use of mixed mode |
|||
assemblies, which would otherwise not load |
|||
correctly. |
|||
--> |
|||
<startup useLegacyV2RuntimeActivationPolicy="true"> |
|||
<!-- Comment out the next line to force use of .NET 4.0 --> |
|||
</startup> |
|||
<runtime> |
|||
<!-- Ensure that test exceptions don't crash NUnit --> |
|||
<legacyUnhandledExceptionPolicy enabled="1"/> |
|||
<!-- Run partial trust V2 assemblies in full trust under .NET 4.0 --> |
|||
<loadFromRemoteSources enabled="true"/> |
|||
<!-- Look for addins in the addins directory for now --> |
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|||
<probing privatePath="lib;addins"/> |
|||
</assemblyBinding> |
|||
</runtime> |
|||
</configuration> |
|||
Binary file not shown.
@ -1,24 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<configuration> |
|||
<!-- |
|||
The .NET 2.0 build of the console runner only |
|||
runs under .NET 2.0 or higher. The setting |
|||
useLegacyV2RuntimeActivationPolicy only applies |
|||
under .NET 4.0 and permits use of mixed mode |
|||
assemblies, which would otherwise not load |
|||
correctly. |
|||
--> |
|||
<startup useLegacyV2RuntimeActivationPolicy="true"> |
|||
<!-- Comment out the next line to force use of .NET 4.0 --> |
|||
</startup> |
|||
<runtime> |
|||
<!-- Ensure that test exceptions don't crash NUnit --> |
|||
<legacyUnhandledExceptionPolicy enabled="1"/> |
|||
<!-- Run partial trust V2 assemblies in full trust under .NET 4.0 --> |
|||
<loadFromRemoteSources enabled="true"/> |
|||
<!-- Look for addins in the addins directory for now --> |
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|||
<probing privatePath="lib;addins"/> |
|||
</assemblyBinding> |
|||
</runtime> |
|||
</configuration> |
|||
Binary file not shown.
Binary file not shown.
@ -1,23 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<configuration> |
|||
<!-- |
|||
The GUI only runs under .NET 2.0 or higher. The |
|||
useLegacyV2RuntimeActivationPolicy setting only |
|||
applies under .NET 4.0 and permits use of mixed |
|||
mode assemblies, which would otherwise not load |
|||
correctly. |
|||
--> |
|||
<startup useLegacyV2RuntimeActivationPolicy="true"> |
|||
<!-- Comment out the next line to force use of .NET 4.0 --> |
|||
</startup> |
|||
<runtime> |
|||
<!-- Ensure that test exceptions don't crash NUnit --> |
|||
<legacyUnhandledExceptionPolicy enabled="1"/> |
|||
<!-- Run partial trust V2 assemblies in full trust under .NET 4.0 --> |
|||
<loadFromRemoteSources enabled="true"/> |
|||
<!-- Look for addins in the addins directory for now --> |
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|||
<probing privatePath="lib;addins"/> |
|||
</assemblyBinding> |
|||
</runtime> |
|||
</configuration> |
|||
Binary file not shown.
@ -1,23 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<configuration> |
|||
<!-- |
|||
The GUI only runs under .NET 2.0 or higher. The |
|||
useLegacyV2RuntimeActivationPolicy setting only |
|||
applies under .NET 4.0 and permits use of mixed |
|||
mode assemblies, which would otherwise not load |
|||
correctly. |
|||
--> |
|||
<startup useLegacyV2RuntimeActivationPolicy="true"> |
|||
<!-- Comment out the next line to force use of .NET 4.0 --> |
|||
</startup> |
|||
<runtime> |
|||
<!-- Ensure that test exceptions don't crash NUnit --> |
|||
<legacyUnhandledExceptionPolicy enabled="1"/> |
|||
<!-- Run partial trust V2 assemblies in full trust under .NET 4.0 --> |
|||
<loadFromRemoteSources enabled="true"/> |
|||
<!-- Look for addins in the addins directory for now --> |
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|||
<probing privatePath="lib;addins"/> |
|||
</assemblyBinding> |
|||
</runtime> |
|||
</configuration> |
|||
Binary file not shown.
Binary file not shown.
@ -1,77 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<configuration> |
|||
|
|||
<!-- Set the level for tracing NUnit itself --> |
|||
<!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug --> |
|||
<system.diagnostics> |
|||
<switches> |
|||
<add name="NTrace" value="0" /> |
|||
</switches> |
|||
</system.diagnostics> |
|||
|
|||
<runtime> |
|||
<!-- We need this so test exceptions don't crash NUnit --> |
|||
<legacyUnhandledExceptionPolicy enabled="1" /> |
|||
|
|||
<!-- Look for addins in the addins directory for now --> |
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|||
<probing privatePath="framework;lib;addins"/> |
|||
</assemblyBinding> |
|||
|
|||
<!-- |
|||
The following <assemblyBinding> section allows running nunit under |
|||
.NET 1.0 by redirecting assemblies. The appliesTo attribute |
|||
causes the section to be ignored except under .NET 1.0 |
|||
on a machine with only the .NET version 1.0 runtime installed. |
|||
If application and its tests were built for .NET 1.1 you will |
|||
also need to redirect system assemblies in the test config file, |
|||
which controls loading of the tests. |
|||
--> |
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" |
|||
appliesTo="v1.0.3705"> |
|||
|
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System" |
|||
publicKeyToken="b77a5c561934e089" |
|||
culture="neutral"/> |
|||
<bindingRedirect oldVersion="1.0.5000.0" |
|||
newVersion="1.0.3300.0"/> |
|||
</dependentAssembly> |
|||
|
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System.Data" |
|||
publicKeyToken="b77a5c561934e089" |
|||
culture="neutral"/> |
|||
<bindingRedirect oldVersion="1.0.5000.0" |
|||
newVersion="1.0.3300.0"/> |
|||
</dependentAssembly> |
|||
|
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System.Drawing" |
|||
publicKeyToken="b03f5f7f11d50a3a" |
|||
culture="neutral"/> |
|||
<bindingRedirect oldVersion="1.0.5000.0" |
|||
newVersion="1.0.3300.0"/> |
|||
</dependentAssembly> |
|||
|
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System.Windows.Forms" |
|||
publicKeyToken="b77a5c561934e089" |
|||
culture="neutral"/> |
|||
<bindingRedirect oldVersion="1.0.5000.0" |
|||
newVersion="1.0.3300.0"/> |
|||
</dependentAssembly> |
|||
|
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System.Xml" |
|||
publicKeyToken="b77a5c561934e089" |
|||
culture="neutral"/> |
|||
<bindingRedirect oldVersion="1.0.5000.0" |
|||
newVersion="1.0.3300.0"/> |
|||
</dependentAssembly> |
|||
|
|||
</assemblyBinding> |
|||
|
|||
</runtime> |
|||
|
|||
</configuration> |
|||
Binary file not shown.
@ -1,77 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<configuration> |
|||
|
|||
<!-- Set the level for tracing NUnit itself --> |
|||
<!-- 0=Off 1=Error 2=Warning 3=Info 4=Debug --> |
|||
<system.diagnostics> |
|||
<switches> |
|||
<add name="NTrace" value="0" /> |
|||
</switches> |
|||
</system.diagnostics> |
|||
|
|||
<runtime> |
|||
<!-- We need this so test exceptions don't crash NUnit --> |
|||
<legacyUnhandledExceptionPolicy enabled="1" /> |
|||
|
|||
<!-- Look for addins in the addins directory for now --> |
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|||
<probing privatePath="framework;lib;addins"/> |
|||
</assemblyBinding> |
|||
|
|||
<!-- |
|||
The following <assemblyBinding> section allows running nunit under |
|||
.NET 1.0 by redirecting assemblies. The appliesTo attribute |
|||
causes the section to be ignored except under .NET 1.0 |
|||
on a machine with only the .NET version 1.0 runtime installed. |
|||
If application and its tests were built for .NET 1.1 you will |
|||
also need to redirect system assemblies in the test config file, |
|||
which controls loading of the tests. |
|||
--> |
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" |
|||
appliesTo="v1.0.3705"> |
|||
|
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System" |
|||
publicKeyToken="b77a5c561934e089" |
|||
culture="neutral"/> |
|||
<bindingRedirect oldVersion="1.0.5000.0" |
|||
newVersion="1.0.3300.0"/> |
|||
</dependentAssembly> |
|||
|
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System.Data" |
|||
publicKeyToken="b77a5c561934e089" |
|||
culture="neutral"/> |
|||
<bindingRedirect oldVersion="1.0.5000.0" |
|||
newVersion="1.0.3300.0"/> |
|||
</dependentAssembly> |
|||
|
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System.Drawing" |
|||
publicKeyToken="b03f5f7f11d50a3a" |
|||
culture="neutral"/> |
|||
<bindingRedirect oldVersion="1.0.5000.0" |
|||
newVersion="1.0.3300.0"/> |
|||
</dependentAssembly> |
|||
|
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System.Windows.Forms" |
|||
publicKeyToken="b77a5c561934e089" |
|||
culture="neutral"/> |
|||
<bindingRedirect oldVersion="1.0.5000.0" |
|||
newVersion="1.0.3300.0"/> |
|||
</dependentAssembly> |
|||
|
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System.Xml" |
|||
publicKeyToken="b77a5c561934e089" |
|||
culture="neutral"/> |
|||
<bindingRedirect oldVersion="1.0.5000.0" |
|||
newVersion="1.0.3300.0"/> |
|||
</dependentAssembly> |
|||
|
|||
</assemblyBinding> |
|||
|
|||
</runtime> |
|||
|
|||
</configuration> |
|||
Binary file not shown.
Binary file not shown.
@ -1,3 +0,0 @@ |
|||
start pnunit-agent 8080 . |
|||
start pnunit-agent 8081 . |
|||
pnunit-launcher test.conf |
|||
@ -1,82 +0,0 @@ |
|||
<TestGroup> |
|||
|
|||
<Variables> |
|||
<Variable name="$agent_host" value="localhost" /> |
|||
</Variables> |
|||
|
|||
<ParallelTests> |
|||
|
|||
<!-- This is really just one test --> |
|||
<ParallelTest> |
|||
<Name>Testing</Name> |
|||
<Tests> |
|||
<TestConf> |
|||
<Name>Testing</Name> |
|||
<Assembly>pnunit.tests.dll</Assembly> |
|||
<TestToRun>TestLibraries.Testing.EqualTo19</TestToRun> |
|||
<Machine>$agent_host:8080</Machine> |
|||
</TestConf> |
|||
</Tests> |
|||
</ParallelTest> |
|||
|
|||
<!-- Parallel Test on a single agent - no barriers --> |
|||
<ParallelTest> |
|||
<Name>Parallel_Tests</Name> |
|||
<Tests> |
|||
<TestConf> |
|||
<Name>ParallelTest_A_Test</Name> |
|||
<Assembly>pnunit.tests.dll</Assembly> |
|||
<TestToRun>TestLibraries.ParallelExample.ParallelTest_A</TestToRun> |
|||
<Machine>$agent_host:8080</Machine> |
|||
<TestParams> |
|||
<!-- sleep time in seconds --> |
|||
<string>2</string> |
|||
</TestParams> |
|||
</TestConf> |
|||
<TestConf> |
|||
<Name>ParallelTest_B_Test</Name> |
|||
<Assembly>pnunit.tests.dll</Assembly> |
|||
<TestToRun>TestLibraries.ParallelExample.ParallelTest_B</TestToRun> |
|||
<Machine>$agent_host:8080</Machine> |
|||
<TestParams> |
|||
<string>1</string> |
|||
<!-- sleep time in seconds --> |
|||
</TestParams> |
|||
</TestConf> |
|||
</Tests> |
|||
</ParallelTest> |
|||
|
|||
<!-- Parallel Test using two agents - with wait barriers --> |
|||
<ParallelTest> |
|||
<Name>Parallel_Barriers</Name> |
|||
<Tests> |
|||
<TestConf> |
|||
<Name>Parallel_Barriers_TestA</Name> |
|||
<Assembly>pnunit.tests.dll</Assembly> |
|||
<TestToRun>TestLibraries.ParallelExampleWithBarriers.ParallelTestWithBarriersA</TestToRun> |
|||
<Machine>$agent_host:8080</Machine> |
|||
<TestParams> |
|||
</TestParams> |
|||
<WaitBarriers> |
|||
<string>START_BARRIER</string> |
|||
<string>WAIT_BARRIER</string> |
|||
</WaitBarriers> |
|||
</TestConf> |
|||
<TestConf> |
|||
<Name>Parallel_Barriers_TestB</Name> |
|||
<Assembly>pnunit.tests.dll</Assembly> |
|||
<TestToRun>TestLibraries.ParallelExampleWithBarriers.ParallelTestWithBarriersB</TestToRun> |
|||
<Machine>$agent_host:8081</Machine> |
|||
<TestParams> |
|||
</TestParams> |
|||
<WaitBarriers> |
|||
<string>START_BARRIER</string> |
|||
<string>WAIT_BARRIER</string> |
|||
</WaitBarriers> |
|||
</TestConf> |
|||
</Tests> |
|||
</ParallelTest> |
|||
|
|||
</ParallelTests> |
|||
|
|||
</TestGroup> |
|||
Binary file not shown.
@ -1,23 +0,0 @@ |
|||
<?xml version="1.0"?> |
|||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> |
|||
<metadata> |
|||
<id>NUnit</id> |
|||
<version>2.6.4</version> |
|||
<title>NUnit</title> |
|||
<authors>Charlie Poole</authors> |
|||
<owners>Charlie Poole</owners> |
|||
<licenseUrl>http://nunit.org/nuget/license.html</licenseUrl> |
|||
<projectUrl>http://nunit.org</projectUrl> |
|||
<iconUrl>http://nunit.org/nuget/nunit_32x32.png</iconUrl> |
|||
<requireLicenseAcceptance>false</requireLicenseAcceptance> |
|||
<description>NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests. |
|||
Version 2.6 is the seventh major release of this well-known and well-tested programming tool. |
|||
This package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.</description> |
|||
<summary>NUnit is a unit-testing framework for all .Net languages with a strong TDD focus.</summary> |
|||
<releaseNotes>Version 2.6 is the seventh major release of NUnit. |
|||
Unlike earlier versions, this package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner. |
|||
The nunit.mocks assembly is now provided by the NUnit.Mocks package. The pnunit.framework assembly is provided by the pNUnit package.</releaseNotes> |
|||
<language>en-US</language> |
|||
<tags>nunit test testing tdd framework fluent assert theory plugin addin</tags> |
|||
</metadata> |
|||
</package> |
|||
@ -1 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?><Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types"><Default Extension="rels" ContentType="application/vnd.openxmlformats-package.relationships+xml" /><Default Extension="nuspec" ContentType="application/octet" /><Default Extension="txt" ContentType="application/octet" /><Default Extension="dll" ContentType="application/octet" /><Default Extension="xml" ContentType="application/octet" /><Default Extension="psmdcp" ContentType="application/vnd.openxmlformats-package.core-properties+xml" /></Types> |
|||
@ -1 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?><Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships"><Relationship Type="http://schemas.microsoft.com/packaging/2010/07/manifest" Target="/NUnit.nuspec" Id="Ra7d0991092f1466f" /><Relationship Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="/package/services/metadata/core-properties/c346e7af292d401e86e307d6778e3cf7.psmdcp" Id="R9d5fe0a83c814d50" /></Relationships> |
|||
Binary file not shown.
File diff suppressed because it is too large
@ -1,39 +0,0 @@ |
|||
<h2>NUnit License</h2> |
|||
|
|||
<p><b> |
|||
Copyright © 2002-2015 Charlie Poole<br> |
|||
Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov<br> |
|||
Copyright © 2000-2002 Philip A. Craig</b> |
|||
|
|||
<p>This software is provided 'as-is', without any express or implied warranty. In |
|||
no event will the authors be held liable for any damages arising from the use |
|||
of this software. |
|||
|
|||
<p>Permission is granted to anyone to use this software for any purpose, including |
|||
commercial applications, and to alter it and redistribute it freely, subject to |
|||
the following restrictions: |
|||
|
|||
<ol> |
|||
<li>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. |
|||
<br><br> |
|||
<b>Portions Copyright © 2002-2012 Charlie Poole or |
|||
Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. |
|||
Vorontsov or Copyright © 2000-2002 Philip A. Craig</b> |
|||
<br><br> |
|||
<li>Altered source versions must be plainly marked as such, and must not be |
|||
misrepresented as being the original software. |
|||
<br><br> |
|||
<li>This notice may not be removed or altered from any source distribution. |
|||
</ol> |
|||
|
|||
<h4>License Note</h4> |
|||
<p>This license is based on <A href="http://www.opensource.org/licenses/zlib-license.html"> |
|||
the open source zlib/libpng license</A>. The idea was to keep the license |
|||
as simple as possible to encourage use of NUnit in free and commercial |
|||
applications and libraries, but to keep the source code together and to give |
|||
credit to the NUnit contributors for their efforts. While this license allows |
|||
shipping NUnit in source and binary form, if shipping a NUnit variant is the |
|||
sole purpose of your product, please <a href="mailto:cpoole@pooleconsulting.com">let |
|||
us know</a>.</p> |
|||
@ -1,15 +0,0 @@ |
|||
Copyright © 2002-2014 Charlie Poole |
|||
Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov |
|||
Copyright © 2000-2002 Philip A. Craig |
|||
|
|||
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. |
|||
|
|||
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: |
|||
|
|||
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required. |
|||
|
|||
Portions Copyright © 2002-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. |
|||
|
|||
3. This notice may not be removed or altered from any source distribution. |
|||
@ -1,3 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?><coreProperties xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.openxmlformats.org/package/2006/metadata/core-properties"><dc:creator>Charlie Poole</dc:creator><dc:description>NUnit features a fluent assert syntax, parameterized, generic and theory tests and is user-extensible. A number of runners, both from the NUnit project and by third parties, are able to execute NUnit tests. |
|||
Version 2.6 is the seventh major release of this well-known and well-tested programming tool. |
|||
This package includes only the framework assembly. You will need to install the NUnit.Runners package unless you are using a third-party runner.</dc:description><dc:identifier>NUnit</dc:identifier><version>2.6.4</version><dc:language>en-US</dc:language><keywords>nunit test testing tdd framework fluent assert theory plugin addin</keywords></coreProperties> |
|||
@ -1,22 +1,25 @@ |
|||
source http://www.nuget.org/api/v2 |
|||
|
|||
# Core Dependencies |
|||
nuget FSharp.Core ~> 3.1.2 |
|||
nuget TaskParallelLibrary 1.0.2856 |
|||
|
|||
# Data Dependencies |
|||
nuget MathNet.Numerics 3.0.0 |
|||
group Test |
|||
source http://www.nuget.org/api/v2 |
|||
nuget FSharp.Core |
|||
nuget NUnit ~> 2.6 |
|||
nuget FsUnit ~> 1.3 |
|||
|
|||
# Benchmark Dependencies |
|||
nuget BenchShark 1.0.0 |
|||
nuget ConsoleDump 0.6.0.1 |
|||
group Build |
|||
source http://www.nuget.org/api/v2 |
|||
nuget FAKE ~> 4.1 |
|||
nuget NUnit.Runners ~> 2.6 |
|||
nuget FSharp.Formatting !~> 2.4 |
|||
nuget NuGet.CommandLine |
|||
|
|||
# Development Dependencies |
|||
nuget NUnit ~> 2.6 |
|||
nuget FsUnit ~> 1.3 |
|||
group Data |
|||
source http://www.nuget.org/api/v2 |
|||
nuget MathNet.Numerics 3.0.0 |
|||
|
|||
# Tools |
|||
nuget FAKE ~> 4.1 |
|||
nuget NUnit.Runners ~> 2.6 |
|||
nuget FSharp.Formatting !~> 2.4 |
|||
nuget NuGet.CommandLine |
|||
group Benchmark |
|||
source http://www.nuget.org/api/v2 |
|||
nuget BenchShark 1.0.0 |
|||
nuget ConsoleDump 0.6.0.1 |
|||
|
|||
@ -1 +1,2 @@ |
|||
MathNet.Numerics |
|||
group Data |
|||
MathNet.Numerics |
|||
|
|||
@ -1 +1,2 @@ |
|||
MathNet.Numerics |
|||
group Data |
|||
MathNet.Numerics |
|||
|
|||
@ -1,2 +1,5 @@ |
|||
MathNet.Numerics |
|||
NUnit |
|||
group Data |
|||
MathNet.Numerics |
|||
|
|||
group Test |
|||
NUnit |
|||
|
|||
@ -1,27 +1,12 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<configuration> |
|||
<runtime> |
|||
|
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|||
<dependentAssembly> |
|||
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
|||
<bindingRedirect oldVersion="0.0.0.0-4.3.1.0" newVersion="4.3.1.0" /> |
|||
</dependentAssembly> |
|||
<dependentAssembly> |
|||
<assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="neutral" /> |
|||
<bindingRedirect oldVersion="0.0.0.0-2.6.4.14350" newVersion="2.6.4.14350" /> |
|||
</dependentAssembly> |
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System.Web.Razor" publicKeyToken="31bf3856ad364e35" culture="neutral" /> |
|||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" /> |
|||
</dependentAssembly> |
|||
<dependentAssembly> |
|||
<assemblyIdentity name="RazorEngine" publicKeyToken="9ee697374c7e744a" culture="neutral" /> |
|||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" /> |
|||
</dependentAssembly> |
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System.Threading" publicKeyToken="31bf3856ad364e35" culture="neutral" /> |
|||
<bindingRedirect oldVersion="0.0.0.0-1.0.2856.102" newVersion="1.0.2856.102" /> |
|||
</dependentAssembly> |
|||
</assemblyBinding></runtime> |
|||
</configuration> |
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|||
<dependentAssembly> |
|||
<Paket>False</Paket> |
|||
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
|||
<bindingRedirect oldVersion="0.0.0.0-999.999.999.999" newVersion="4.3.1.0" /> |
|||
</dependentAssembly> |
|||
</assemblyBinding> |
|||
</runtime> |
|||
</configuration> |
|||
|
|||
@ -1,2 +1,4 @@ |
|||
FsUnit |
|||
TaskParallelLibrary |
|||
|
|||
group Test |
|||
FsUnit |
|||
|
|||
@ -1,2 +1,3 @@ |
|||
FSharp.Core |
|||
FsUnit |
|||
group Test |
|||
FsUnit |
|||
FSharp.Core |
|||
|
|||
@ -1,2 +1,3 @@ |
|||
BenchShark |
|||
ConsoleDump |
|||
group Benchmark |
|||
BenchShark |
|||
ConsoleDump |
|||
|
|||
@ -1,30 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<configuration> |
|||
<startup> |
|||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> |
|||
</startup> |
|||
<runtime> |
|||
|
|||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> |
|||
<dependentAssembly> |
|||
<assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="neutral" /> |
|||
<bindingRedirect oldVersion="0.0.0.0-2.6.4.14350" newVersion="2.6.4.14350" /> |
|||
</dependentAssembly> |
|||
<dependentAssembly> |
|||
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> |
|||
<bindingRedirect oldVersion="0.0.0.0-4.3.1.0" newVersion="4.3.1.0" /> |
|||
</dependentAssembly> |
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System.Web.Razor" publicKeyToken="31bf3856ad364e35" culture="neutral" /> |
|||
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" /> |
|||
</dependentAssembly> |
|||
<dependentAssembly> |
|||
<assemblyIdentity name="RazorEngine" publicKeyToken="9ee697374c7e744a" culture="neutral" /> |
|||
<bindingRedirect oldVersion="0.0.0.0-3.3.0.0" newVersion="3.3.0.0" /> |
|||
</dependentAssembly> |
|||
<dependentAssembly> |
|||
<assemblyIdentity name="System.Threading" publicKeyToken="31bf3856ad364e35" culture="neutral" /> |
|||
<bindingRedirect oldVersion="0.0.0.0-1.0.2856.102" newVersion="1.0.2856.102" /> |
|||
</dependentAssembly> |
|||
</assemblyBinding></runtime> |
|||
</configuration> |
|||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue