63 changed files with 12001 additions and 10972 deletions
Binary file not shown.
@ -1 +1 @@ |
|||
<?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="/FSharp.Core.nuspec" Id="R8e31fb239a9340c1" /><Relationship Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="/package/services/metadata/core-properties/8f271f05d4f9452eb5e15fe759218645.psmdcp" Id="Re8636f393adb4eeb" /></Relationships> |
|||
<?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="/FSharp.Core.nuspec" Id="R515164d0c2e74e41" /><Relationship Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="/package/services/metadata/core-properties/8f892edb52054d8cbb6b676af1a01d28.psmdcp" Id="R2bdfc51ac78f4e7e" /></Relationships> |
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Binary file not shown.
Binary file not shown.
@ -1,19 +1,24 @@ |
|||
<?xml version="1.0"?> |
|||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> |
|||
<?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.0.1</version> |
|||
<version>1.3.1.0</version> |
|||
<authors>Ray Vernagus and Daniel Mohl</authors> |
|||
<owners>Ray Vernagus and Daniel Mohl</owners> |
|||
<licenseUrl>http://fsunit.codeplex.com/license</licenseUrl> |
|||
<projectUrl>http://fsunit.codeplex.com/</projectUrl> |
|||
<requireLicenseAcceptance>false</requireLicenseAcceptance> |
|||
<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> |
|||
<language>en-US</language> |
|||
<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.3" /> |
|||
<dependency id="NUnit" version="[2.6.4]" /> |
|||
</dependencies> |
|||
</metadata> |
|||
</package> |
|||
Binary file not shown.
@ -0,0 +1,6 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<doc> |
|||
<assembly><name>FsUnit.CustomMatchers</name></assembly> |
|||
<members> |
|||
</members> |
|||
</doc> |
|||
@ -0,0 +1,304 @@ |
|||
<?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.
Binary file not shown.
Binary file not shown.
@ -1 +1,10 @@ |
|||
<?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="dll" ContentType="application/octet" /><Default Extension="ps1" ContentType="application/octet" /><Default Extension="psmdcp" ContentType="application/vnd.openxmlformats-package.core-properties+xml" /></Types> |
|||
<?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 +1,5 @@ |
|||
<?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="/FsUnit.nuspec" Id="R5e6398fe7d054dd5" /><Relationship Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="/package/services/metadata/core-properties/5098e083868e4aeeb8d86ca10388fffa.psmdcp" Id="Rcfae57d904724bcb" /></Relationships> |
|||
<?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.
@ -1 +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>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>1.3.0.1</version><dc:language>en-US</dc:language><keywords>F# fsharp NUnit FsUnit</keywords></coreProperties> |
|||
@ -0,0 +1,10 @@ |
|||
<?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> |
|||
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue