diff options
81 files changed, 34460 insertions, 0 deletions
diff --git a/SendGrid/Example/Example.csproj b/SendGrid/Example/Example.csproj new file mode 100755 index 0000000..8ce66d2 --- /dev/null +++ b/SendGrid/Example/Example.csproj @@ -0,0 +1,58 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
+ <ProductVersion>8.0.30703</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{F39ADCE7-63B5-406D-9BE8-C407920B6B8F}</ProjectGuid>
+ <OutputType>Exe</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>Example</RootNamespace>
+ <AssemblyName>Example</AssemblyName>
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+ <TargetFrameworkProfile>Client</TargetFrameworkProfile>
+ <FileAlignment>512</FileAlignment>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
+ <PlatformTarget>x86</PlatformTarget>
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>false</Optimize>
+ <OutputPath>bin\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
+ <PlatformTarget>x86</PlatformTarget>
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\Release\</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="System" />
+ <Reference Include="System.Core" />
+ <Reference Include="System.Net" />
+ <Reference Include="System.Xml.Linq" />
+ <Reference Include="System.Data.DataSetExtensions" />
+ <Reference Include="Microsoft.CSharp" />
+ <Reference Include="System.Data" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="Program.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
+ Other similar extension points exist, see Microsoft.Common.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+</Project>
\ No newline at end of file diff --git a/SendGrid/Example/Program.cs b/SendGrid/Example/Program.cs new file mode 100755 index 0000000..abf67f0 --- /dev/null +++ b/SendGrid/Example/Program.cs @@ -0,0 +1,16 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net.Mail;
+using System.Text;
+
+namespace Example
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+
+ }
+ }
+}
diff --git a/SendGrid/Example/Properties/AssemblyInfo.cs b/SendGrid/Example/Properties/AssemblyInfo.cs new file mode 100755 index 0000000..e7c46f8 --- /dev/null +++ b/SendGrid/Example/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Example")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Example")]
+[assembly: AssemblyCopyright("Copyright © 2012")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("4dec6d01-72a1-4243-904b-f906c58eb56f")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/SendGrid/SendGrid.sln b/SendGrid/SendGrid.sln new file mode 100755 index 0000000..9b0b5b6 --- /dev/null +++ b/SendGrid/SendGrid.sln @@ -0,0 +1,54 @@ +
+Microsoft Visual Studio Solution File, Format Version 11.00
+# Visual Studio 2010
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mail", "SendGrid\Mail.csproj", "{3C687BEF-FF50-44AD-8315-2D4237281AF8}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{0319E73A-7039-4858-B047-1EDF88BB6BD1}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example", "Example\Example.csproj", "{F39ADCE7-63B5-406D-9BE8-C407920B6B8F}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Debug|Mixed Platforms = Debug|Mixed Platforms
+ Debug|x86 = Debug|x86
+ Release|Any CPU = Release|Any CPU
+ Release|Mixed Platforms = Release|Mixed Platforms
+ Release|x86 = Release|x86
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {3C687BEF-FF50-44AD-8315-2D4237281AF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {3C687BEF-FF50-44AD-8315-2D4237281AF8}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {3C687BEF-FF50-44AD-8315-2D4237281AF8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
+ {3C687BEF-FF50-44AD-8315-2D4237281AF8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
+ {3C687BEF-FF50-44AD-8315-2D4237281AF8}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {3C687BEF-FF50-44AD-8315-2D4237281AF8}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {3C687BEF-FF50-44AD-8315-2D4237281AF8}.Release|Any CPU.Build.0 = Release|Any CPU
+ {3C687BEF-FF50-44AD-8315-2D4237281AF8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
+ {3C687BEF-FF50-44AD-8315-2D4237281AF8}.Release|Mixed Platforms.Build.0 = Release|Any CPU
+ {3C687BEF-FF50-44AD-8315-2D4237281AF8}.Release|x86.ActiveCfg = Release|Any CPU
+ {0319E73A-7039-4858-B047-1EDF88BB6BD1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {0319E73A-7039-4858-B047-1EDF88BB6BD1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {0319E73A-7039-4858-B047-1EDF88BB6BD1}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
+ {0319E73A-7039-4858-B047-1EDF88BB6BD1}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
+ {0319E73A-7039-4858-B047-1EDF88BB6BD1}.Debug|x86.ActiveCfg = Debug|Any CPU
+ {0319E73A-7039-4858-B047-1EDF88BB6BD1}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {0319E73A-7039-4858-B047-1EDF88BB6BD1}.Release|Any CPU.Build.0 = Release|Any CPU
+ {0319E73A-7039-4858-B047-1EDF88BB6BD1}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
+ {0319E73A-7039-4858-B047-1EDF88BB6BD1}.Release|Mixed Platforms.Build.0 = Release|Any CPU
+ {0319E73A-7039-4858-B047-1EDF88BB6BD1}.Release|x86.ActiveCfg = Release|Any CPU
+ {F39ADCE7-63B5-406D-9BE8-C407920B6B8F}.Debug|Any CPU.ActiveCfg = Debug|x86
+ {F39ADCE7-63B5-406D-9BE8-C407920B6B8F}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
+ {F39ADCE7-63B5-406D-9BE8-C407920B6B8F}.Debug|Mixed Platforms.Build.0 = Debug|x86
+ {F39ADCE7-63B5-406D-9BE8-C407920B6B8F}.Debug|x86.ActiveCfg = Debug|x86
+ {F39ADCE7-63B5-406D-9BE8-C407920B6B8F}.Debug|x86.Build.0 = Debug|x86
+ {F39ADCE7-63B5-406D-9BE8-C407920B6B8F}.Release|Any CPU.ActiveCfg = Release|x86
+ {F39ADCE7-63B5-406D-9BE8-C407920B6B8F}.Release|Mixed Platforms.ActiveCfg = Release|x86
+ {F39ADCE7-63B5-406D-9BE8-C407920B6B8F}.Release|Mixed Platforms.Build.0 = Release|x86
+ {F39ADCE7-63B5-406D-9BE8-C407920B6B8F}.Release|x86.ActiveCfg = Release|x86
+ {F39ADCE7-63B5-406D-9BE8-C407920B6B8F}.Release|x86.Build.0 = Release|x86
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
diff --git a/SendGrid/SendGrid.suo b/SendGrid/SendGrid.suo Binary files differnew file mode 100755 index 0000000..9a82799 --- /dev/null +++ b/SendGrid/SendGrid.suo diff --git a/SendGrid/SendGrid/IHeader.cs b/SendGrid/SendGrid/IHeader.cs new file mode 100755 index 0000000..640d985 --- /dev/null +++ b/SendGrid/SendGrid/IHeader.cs @@ -0,0 +1,21 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net.Mail;
+using System.Text;
+
+namespace SendGrid
+{
+ public interface IHeader
+ {
+ void AddTo(IEnumerable<String> recipients);
+ void AddSubVal(String tag, IEnumerable<String> substitutions);
+ void AddUniqueIdentifier(IDictionary<String, String> identifiers);
+ void SetCategory(String category);
+ void Enable(String filter);
+ void Disable(String filter);
+ void AddFilterSetting(String filter, IEnumerable<String> settings, String value);
+ void AddHeader(MailMessage mime);
+ void AsJson();
+ }
+}
diff --git a/SendGrid/SendGrid/ISendGrid.cs b/SendGrid/SendGrid/ISendGrid.cs new file mode 100755 index 0000000..e5d3226 --- /dev/null +++ b/SendGrid/SendGrid/ISendGrid.cs @@ -0,0 +1,89 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Net.Mail;
+using System.Text;
+
+namespace SendGrid
+{
+ public interface ISendGrid
+ {
+ #region Properties
+ String From { get; set; }
+ String To { get; set; }
+ String Cc { get; set; }
+ String Bcc { get; set; }
+ String Subject { get; set; }
+ String Headers { get; set; }
+ String Html { get; set; }
+ String Text { get; set; }
+ String Transport { get; set; }
+ String Date { get; set; }
+ #endregion
+
+ #region Interface for ITransport
+ MailMessage CreateMimeMessage();
+ #endregion
+
+ #region Methods for setting data
+ void AddTo(String address);
+ void AddTo(IEnumerable<String> addresses);
+ void AddTo(IDictionary<String, String> addresssInfo);
+ void AddTo(IEnumerable<IDictionary<String, String>> addressesInfo);
+
+ void AddCc(String address);
+ void AddCc(IEnumerable<String> addresses);
+ void AddCc(IDictionary<String, String> addresssInfo);
+ void AddCc(IEnumerable<IDictionary<String, String>> addressesInfo);
+
+ void AddBcc(String address);
+ void AddBcc(IEnumerable<String> addresses);
+ void AddBcc(IDictionary<String, String> addresssInfo);
+ void AddBcc(IEnumerable<IDictionary<String, String>> addressesInfo);
+
+ void AddRcpts(String address);
+ void AddRcpts(IEnumerable<String> addresses);
+ void AddRcpts(IDictionary<String, String> addresssInfo);
+ void AddRcpts(IEnumerable<IDictionary<String, String>> addressesInfo);
+
+ void AddSubVal(String tag, String value);
+
+ void AddAttachment(String filePath);
+ void AddAttachment(Attachment attachment);
+
+ String GetMailFrom();
+ IEnumerable<String> GetRecipients();
+
+ String Get(String field);
+ void Set(String field, String value);
+ #endregion
+
+ #region SMTP API Functions
+ IHeader Header();
+
+ void DisableGravatar();
+ void DisableOpenTracking();
+ void DisableClickTracking();
+ void DisableSpamCheck();
+ void DisableUnsubscribe();
+ void DisableFooter();
+ void DisableGoogleAnalytics();
+ void DisableTemplate();
+ void DisableBcc();
+ void DisableBipassListManaement();
+
+ void EnableGravatar();
+ void EnableOpenTracking();
+ void EnableClickTracking(String text = null);
+ void EnableSpamCheck(int score = 5, String url = null);
+ void EnableUnsubscribe(String text, String html, String replace, String url, String landing);
+ void EnableFooter(String text = null, String html = null);
+ void EnableGoogleAnalytics(String source, String medium, String term, String content = null, String campaign = null);
+ void EnableTemplate(String html = null);
+ void EnableBcc(String email = null);
+ void EnableBipassListManaement();
+ #endregion
+
+ void Mail();
+ }
+}
diff --git a/SendGrid/SendGrid/Mail.csproj b/SendGrid/SendGrid/Mail.csproj new file mode 100755 index 0000000..141d232 --- /dev/null +++ b/SendGrid/SendGrid/Mail.csproj @@ -0,0 +1,57 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProductVersion>8.0.30703</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{3C687BEF-FF50-44AD-8315-2D4237281AF8}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>SendGrid</RootNamespace>
+ <AssemblyName>SendGrid</AssemblyName>
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+ <FileAlignment>512</FileAlignment>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>false</Optimize>
+ <OutputPath>bin\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\Release\</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="System" />
+ <Reference Include="System.Core" />
+ <Reference Include="System.Net" />
+ <Reference Include="System.Xml.Linq" />
+ <Reference Include="System.Data.DataSetExtensions" />
+ <Reference Include="Microsoft.CSharp" />
+ <Reference Include="System.Data" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="IHeader.cs" />
+ <Compile Include="ISendGrid.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ <Compile Include="Transport\ITransport.cs" />
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
+ Other similar extension points exist, see Microsoft.Common.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+</Project>
\ No newline at end of file diff --git a/SendGrid/SendGrid/Properties/AssemblyInfo.cs b/SendGrid/SendGrid/Properties/AssemblyInfo.cs new file mode 100755 index 0000000..9d0b25e --- /dev/null +++ b/SendGrid/SendGrid/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("SendGrid")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("SendGrid")]
+[assembly: AssemblyCopyright("Copyright © 2012")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("193fa200-8430-4206-aacd-2d2bb2dfa6cf")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/SendGrid/SendGrid/Transport/ITransport.cs b/SendGrid/SendGrid/Transport/ITransport.cs new file mode 100755 index 0000000..97ebdb6 --- /dev/null +++ b/SendGrid/SendGrid/Transport/ITransport.cs @@ -0,0 +1,12 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace SendGrid.Transport
+{
+ public interface ITransport
+ {
+ void Deliver(ISendGrid message);
+ }
+}
diff --git a/SendGrid/Tests/Properties/AssemblyInfo.cs b/SendGrid/Tests/Properties/AssemblyInfo.cs new file mode 100755 index 0000000..e1c3089 --- /dev/null +++ b/SendGrid/Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Tests")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Tests")]
+[assembly: AssemblyCopyright("Copyright © 2012")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("ce0ad7f8-ecce-46c6-a057-f7aa74bb3518")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/SendGrid/Tests/Tests.csproj b/SendGrid/Tests/Tests.csproj new file mode 100755 index 0000000..5f8d402 --- /dev/null +++ b/SendGrid/Tests/Tests.csproj @@ -0,0 +1,68 @@ +<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProductVersion>8.0.30703</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{0319E73A-7039-4858-B047-1EDF88BB6BD1}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>Tests</RootNamespace>
+ <AssemblyName>Tests</AssemblyName>
+ <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
+ <FileAlignment>512</FileAlignment>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+ <DebugSymbols>true</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>false</Optimize>
+ <OutputPath>bin\Debug\</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>true</Optimize>
+ <OutputPath>bin\Release\</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="Moq">
+ <HintPath>..\packages\Moq.4.0.10827\lib\NET40\Moq.dll</HintPath>
+ </Reference>
+ <Reference Include="nunit.framework">
+ <HintPath>..\packages\NUnit.2.5.10.11092\lib\nunit.framework.dll</HintPath>
+ </Reference>
+ <Reference Include="nunit.mocks">
+ <HintPath>..\packages\NUnit.2.5.10.11092\lib\nunit.mocks.dll</HintPath>
+ </Reference>
+ <Reference Include="pnunit.framework">
+ <HintPath>..\packages\NUnit.2.5.10.11092\lib\pnunit.framework.dll</HintPath>
+ </Reference>
+ <Reference Include="System" />
+ <Reference Include="System.Core" />
+ <Reference Include="System.Xml.Linq" />
+ <Reference Include="System.Data.DataSetExtensions" />
+ <Reference Include="Microsoft.CSharp" />
+ <Reference Include="System.Data" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="packages.config" />
+ </ItemGroup>
+ <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+ <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
+ Other similar extension points exist, see Microsoft.Common.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+</Project>
\ No newline at end of file diff --git a/SendGrid/Tests/packages.config b/SendGrid/Tests/packages.config new file mode 100755 index 0000000..be890f5 --- /dev/null +++ b/SendGrid/Tests/packages.config @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="utf-8"?>
+<packages>
+ <package id="Moq" version="4.0.10827" />
+ <package id="NUnit" version="2.5.10.11092" />
+</packages>
\ No newline at end of file diff --git a/SendGrid/packages/Moq.4.0.10827/License.txt b/SendGrid/packages/Moq.4.0.10827/License.txt new file mode 100755 index 0000000..8b6bcf8 --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/License.txt @@ -0,0 +1,39 @@ +Copyright (c) 2007. Clarius Consulting, Manas Technology Solutions, InSTEDD
+http://code.google.com/p/moq/
+All rights reserved.
+
+Redistribution and use in source and binary forms,
+with or without modification, are permitted provided
+that the following conditions are met:
+
+ * Redistributions of source code must retain the
+ above copyright notice, this list of conditions and
+ the following disclaimer.
+
+ * Redistributions in binary form must reproduce
+ the above copyright notice, this list of conditions
+ and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+ * Neither the name of Clarius Consulting, Manas Technology Solutions or InSTEDD nor the
+ names of its contributors may be used to endorse
+ or promote products derived from this software
+ without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
+CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
+CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGE.
+
+[This is the BSD license, see
+ http://www.opensource.org/licenses/bsd-license.php]
\ No newline at end of file diff --git a/SendGrid/packages/Moq.4.0.10827/Moq.4.0.10827.nupkg b/SendGrid/packages/Moq.4.0.10827/Moq.4.0.10827.nupkg Binary files differnew file mode 100755 index 0000000..91e88a4 --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/Moq.4.0.10827.nupkg diff --git a/SendGrid/packages/Moq.4.0.10827/Moq.chm b/SendGrid/packages/Moq.4.0.10827/Moq.chm Binary files differnew file mode 100755 index 0000000..f5779bb --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/Moq.chm diff --git a/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.dll b/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.dll Binary files differnew file mode 100755 index 0000000..3d3b8cc --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.dll diff --git a/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.pdb b/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.pdb Binary files differnew file mode 100755 index 0000000..b0eaa80 --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.pdb diff --git a/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.xml b/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.xml new file mode 100755 index 0000000..4320775 --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/lib/NET35/Moq.xml @@ -0,0 +1,5768 @@ +<?xml version="1.0"?>
+<doc>
+ <assembly>
+ <name>Moq</name>
+ </assembly>
+ <members>
+ <member name="T:Moq.Language.ISetupConditionResult`1">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.Setup(System.Linq.Expressions.Expression{System.Action{`0}})">
+ <summary>
+ The expectation will be considered only in the former condition.
+ </summary>
+ <param name="expression"></param>
+ <returns></returns>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.Setup``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ The expectation will be considered only in the former condition.
+ </summary>
+ <typeparam name="TResult"></typeparam>
+ <param name="expression"></param>
+ <returns></returns>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.SetupGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Setups the get.
+ </summary>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ <param name="expression">The expression.</param>
+ <returns></returns>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.SetupSet``1(System.Action{`0})">
+ <summary>
+ Setups the set.
+ </summary>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ <param name="setterExpression">The setter expression.</param>
+ <returns></returns>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.SetupSet(System.Action{`0})">
+ <summary>
+ Setups the set.
+ </summary>
+ <param name="setterExpression">The setter expression.</param>
+ <returns></returns>
+ </member>
+ <member name="T:Moq.Language.ICallback">
+ <summary>
+ Defines the <c>Callback</c> verb and overloads.
+ </summary>
+ </member>
+ <member name="T:Moq.IHideObjectMembers">
+ <summary>
+ Helper interface used to hide the base <see cref="T:System.Object"/>
+ members from the fluent API to make it much cleaner
+ in Visual Studio intellisense.
+ </summary>
+ </member>
+ <member name="M:Moq.IHideObjectMembers.GetType">
+ <summary/>
+ </member>
+ <member name="M:Moq.IHideObjectMembers.GetHashCode">
+ <summary/>
+ </member>
+ <member name="M:Moq.IHideObjectMembers.ToString">
+ <summary/>
+ </member>
+ <member name="M:Moq.IHideObjectMembers.Equals(System.Object)">
+ <summary/>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback(System.Action)">
+ <summary>
+ Specifies a callback to invoke when the method is called.
+ </summary>
+ <param name="action">The callback method to invoke.</param>
+ <example>
+ The following example specifies a callback to set a boolean
+ value that can be used later:
+ <code>
+ var called = false;
+ mock.Setup(x => x.Execute())
+ .Callback(() => called = true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``1(System.Action{``0})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T">The argument type of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <example>
+ Invokes the given callback with the concrete invocation argument value.
+ <para>
+ Notice how the specific string argument is retrieved by simply declaring
+ it as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(It.IsAny<string>()))
+ .Callback((string command) => Console.WriteLine(command));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``2(System.Action{``0,``1})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2) => Console.WriteLine(arg1 + arg2));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``3(System.Action{``0,``1,``2})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3) => Console.WriteLine(arg1 + arg2 + arg3));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``4(System.Action{``0,``1,``2,``3})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4) => Console.WriteLine(arg1 + arg2 + arg3 + arg4));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``5(System.Action{``0,``1,``2,``3,``4})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``6(System.Action{``0,``1,``2,``3,``4,``5})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``7(System.Action{``0,``1,``2,``3,``4,``5,``6})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``8(System.Action{``0,``1,``2,``3,``4,``5,``6,``7})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``9(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``10(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``11(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``12(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``13(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``14(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``15(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``16(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <typeparam name="T16">The type of the sixteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15, string arg16) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15 + arg16));
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.ICallback`2">
+ <summary>
+ Defines the <c>Callback</c> verb and overloads for callbacks on
+ setups that return a value.
+ </summary>
+ <typeparam name="TMock">Mocked type.</typeparam>
+ <typeparam name="TResult">Type of the return value of the setup.</typeparam>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback(System.Action)">
+ <summary>
+ Specifies a callback to invoke when the method is called.
+ </summary>
+ <param name="action">The callback method to invoke.</param>
+ <example>
+ The following example specifies a callback to set a boolean value that can be used later:
+ <code>
+ var called = false;
+ mock.Setup(x => x.Execute())
+ .Callback(() => called = true)
+ .Returns(true);
+ </code>
+ Note that in the case of value-returning methods, after the <c>Callback</c>
+ call you can still specify the return value.
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``1(System.Action{``0})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T">The type of the argument of the invoked method.</typeparam>
+ <param name="action">Callback method to invoke.</param>
+ <example>
+ Invokes the given callback with the concrete invocation argument value.
+ <para>
+ Notice how the specific string argument is retrieved by simply declaring
+ it as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(It.IsAny<string>()))
+ .Callback(command => Console.WriteLine(command))
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``2(System.Action{``0,``1})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2) => Console.WriteLine(arg1 + arg2));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``3(System.Action{``0,``1,``2})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3) => Console.WriteLine(arg1 + arg2 + arg3));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``4(System.Action{``0,``1,``2,``3})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4) => Console.WriteLine(arg1 + arg2 + arg3 + arg4));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``5(System.Action{``0,``1,``2,``3,``4})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``6(System.Action{``0,``1,``2,``3,``4,``5})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``7(System.Action{``0,``1,``2,``3,``4,``5,``6})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``8(System.Action{``0,``1,``2,``3,``4,``5,``6,``7})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``9(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``10(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``11(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``12(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``13(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``14(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``15(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``16(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <typeparam name="T16">The type of the sixteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15 + arg16));
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.IRaise`1">
+ <summary>
+ Defines the <c>Raises</c> verb.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)">
+ <summary>
+ Specifies the event that will be raised
+ when the setup is met.
+ </summary>
+ <param name="eventExpression">An expression that represents an event attach or detach action.</param>
+ <param name="args">The event arguments to pass for the raised event.</param>
+ <example>
+ The following example shows how to raise an event when
+ the setup is met:
+ <code>
+ var mock = new Mock<IContainer>();
+
+ mock.Setup(add => add.Add(It.IsAny<string>(), It.IsAny<object>()))
+ .Raises(add => add.Added += null, EventArgs.Empty);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.Func{System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised
+ when the setup is matched.
+ </summary>
+ <param name="eventExpression">An expression that represents an event attach or detach action.</param>
+ <param name="func">A function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.Object[])">
+ <summary>
+ Specifies the custom event that will be raised
+ when the setup is matched.
+ </summary>
+ <param name="eventExpression">An expression that represents an event attach or detach action.</param>
+ <param name="args">The arguments to pass to the custom delegate (non EventHandler-compatible).</param>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``1(System.Action{`0},System.Func{``0,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``2(System.Action{`0},System.Func{``0,``1,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``3(System.Action{`0},System.Func{``0,``1,``2,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``4(System.Action{`0},System.Func{``0,``1,``2,``3,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``5(System.Action{`0},System.Func{``0,``1,``2,``3,``4,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``6(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``7(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``8(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``9(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``10(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``11(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``12(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``13(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``14(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``15(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``16(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T16">The type of the sixteenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="T:Moq.Language.IReturns`2">
+ <summary>
+ Defines the <c>Returns</c> verb.
+ </summary>
+ <typeparam name="TMock">Mocked type.</typeparam>
+ <typeparam name="TResult">Type of the return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns(`1)">
+ <summary>
+ Specifies the value to return.
+ </summary>
+ <param name="value">The value to return, or <see langword="null"/>.</param>
+ <example>
+ Return a <c>true</c> value from the method call:
+ <code>
+ mock.Setup(x => x.Execute("ping"))
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns(System.Func{`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method.
+ </summary>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <example group="returns">
+ Return a calculated value when the method is called:
+ <code>
+ mock.Setup(x => x.Execute("ping"))
+ .Returns(() => returnValues[0]);
+ </code>
+ The lambda expression to retrieve the return value is lazy-executed,
+ meaning that its value may change depending on the moment the method
+ is executed and the value the <c>returnValues</c> array has at
+ that moment.
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``1(System.Func{``0,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T">The type of the argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <example group="returns">
+ Return a calculated value which is evaluated lazily at the time of the invocation.
+ <para>
+ The lookup list can change between invocations and the setup
+ will return different values accordingly. Also, notice how the specific
+ string argument is retrieved by simply declaring it as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(It.IsAny<string>()))
+ .Returns((string command) => returnValues[command]);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``2(System.Func{``0,``1,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2) => arg1 + arg2);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``3(System.Func{``0,``1,``2,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3) => arg1 + arg2 + arg3);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``4(System.Func{``0,``1,``2,``3,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4) => arg1 + arg2 + arg3 + arg4);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``5(System.Func{``0,``1,``2,``3,``4,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5) => arg1 + arg2 + arg3 + arg4 + arg5);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``6(System.Func{``0,``1,``2,``3,``4,``5,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``7(System.Func{``0,``1,``2,``3,``4,``5,``6,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``8(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``9(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``10(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``11(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``12(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``13(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``14(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``15(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``16(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <typeparam name="T16">The type of the sixteenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15, string arg16) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15 + arg16);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.ISetupSequentialResult`1">
+ <summary>
+ Language for ReturnSequence
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ISetupSequentialResult`1.Returns(`0)">
+ <summary>
+ Returns value
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ISetupSequentialResult`1.Throws(System.Exception)">
+ <summary>
+ Throws an exception
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ISetupSequentialResult`1.Throws``1">
+ <summary>
+ Throws an exception
+ </summary>
+ </member>
+ <member name="F:Moq.Linq.FluentMockVisitor.isFirst">
+ <summary>
+ The first method call or member access will be the
+ last segment of the expression (depth-first traversal),
+ which is the one we have to Setup rather than FluentMock.
+ And the last one is the one we have to Mock.Get rather
+ than FluentMock.
+ </summary>
+ </member>
+ <member name="T:Moq.Mock">
+ <summary>
+ Base class for mocks and static helper class with methods that
+ apply to mocked objects, such as <see cref="M:Moq.Mock.Get``1(``0)"/> to
+ retrieve a <see cref="T:Moq.Mock`1"/> from an object instance.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.Of``1">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.Mock.Of``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <param name="predicate">The predicate with the specification of how the mocked object should behave.</param>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.Mock.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:Moq.Mock"/> class.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.Get``1(``0)">
+ <summary>
+ Retrieves the mock object for the given object instance.
+ </summary><typeparam name="T">
+ Type of the mock to retrieve. Can be omitted as it's inferred
+ from the object instance passed in as the <paramref name="mocked"/> instance.
+ </typeparam><param name="mocked">The instance of the mocked object.</param><returns>The mock associated with the mocked object.</returns><exception cref="T:System.ArgumentException">
+ The received <paramref name="mocked"/> instance
+ was not created by Moq.
+ </exception><example group="advanced">
+ The following example shows how to add a new setup to an object
+ instance which is not the original <see cref="T:Moq.Mock`1"/> but rather
+ the object associated with it:
+ <code>
+ // Typed instance, not the mock, is retrieved from some test API.
+ HttpContextBase context = GetMockContext();
+
+ // context.Request is the typed object from the "real" API
+ // so in order to add a setup to it, we need to get
+ // the mock that "owns" it
+ Mock<HttpRequestBase> request = Mock.Get(context.Request);
+ mock.Setup(req => req.AppRelativeCurrentExecutionFilePath)
+ .Returns(tempUrl);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock.OnGetObject">
+ <summary>
+ Returns the mocked object value.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.Verify">
+ <summary>
+ Verifies that all verifiable expectations have been met.
+ </summary><example group="verification">
+ This example sets up an expectation and marks it as verifiable. After
+ the mock is used, a <c>Verify()</c> call is issued on the mock
+ to ensure the method in the setup was invoked:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ this.Setup(x => x.HasInventory(TALISKER, 50)).Verifiable().Returns(true);
+ ...
+ // other test code
+ ...
+ // Will throw if the test code has didn't call HasInventory.
+ this.Verify();
+ </code>
+ </example><exception cref="T:Moq.MockException">Not all verifiable expectations were met.</exception>
+ </member>
+ <member name="M:Moq.Mock.VerifyAll">
+ <summary>
+ Verifies all expectations regardless of whether they have
+ been flagged as verifiable.
+ </summary><example group="verification">
+ This example sets up an expectation without marking it as verifiable. After
+ the mock is used, a <see cref="M:Moq.Mock.VerifyAll"/> call is issued on the mock
+ to ensure that all expectations are met:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ this.Setup(x => x.HasInventory(TALISKER, 50)).Returns(true);
+ ...
+ // other test code
+ ...
+ // Will throw if the test code has didn't call HasInventory, even
+ // that expectation was not marked as verifiable.
+ this.VerifyAll();
+ </code>
+ </example><exception cref="T:Moq.MockException">At least one expectation was not met.</exception>
+ </member>
+ <member name="M:Moq.Mock.GetInterceptor(System.Linq.Expressions.Expression,Moq.Mock)">
+ <summary>
+ Gets the interceptor target for the given expression and root mock,
+ building the intermediate hierarchy of mock objects if necessary.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.DoRaise(System.Reflection.EventInfo,System.EventArgs)">
+ <summary>
+ Raises the associated event with the given
+ event argument data.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.DoRaise(System.Reflection.EventInfo,System.Object[])">
+ <summary>
+ Raises the associated event with the given
+ event argument data.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.As``1">
+ <summary>
+ Adds an interface implementation to the mock,
+ allowing setups to be specified for it.
+ </summary><remarks>
+ This method can only be called before the first use
+ of the mock <see cref="P:Moq.Mock.Object"/> property, at which
+ point the runtime type has already been generated
+ and no more interfaces can be added to it.
+ <para>
+ Also, <typeparamref name="TInterface"/> must be an
+ interface and not a class, which must be specified
+ when creating the mock instead.
+ </para>
+ </remarks><exception cref="T:System.InvalidOperationException">
+ The mock type
+ has already been generated by accessing the <see cref="P:Moq.Mock.Object"/> property.
+ </exception><exception cref="T:System.ArgumentException">
+ The <typeparamref name="TInterface"/> specified
+ is not an interface.
+ </exception><example>
+ The following example creates a mock for the main interface
+ and later adds <see cref="T:System.IDisposable"/> to it to verify
+ it's called by the consumer code:
+ <code>
+ var mock = new Mock<IProcessor>();
+ mock.Setup(x => x.Execute("ping"));
+
+ // add IDisposable interface
+ var disposable = mock.As<IDisposable>();
+ disposable.Setup(d => d.Dispose()).Verifiable();
+ </code>
+ </example><typeparam name="TInterface">Type of interface to cast the mock to.</typeparam>
+ </member>
+ <member name="M:Moq.Mock.SetReturnsDefault``1(``0)">
+ <!-- No matching elements were found for the following include tag --><include file="Mock.Generic.xdoc" path="docs/doc[@for="Mock.SetReturnDefault{TReturn}"]/*"/>
+ </member>
+ <member name="P:Moq.Mock.Behavior">
+ <summary>
+ Behavior of the mock, according to the value set in the constructor.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.CallBase">
+ <summary>
+ Whether the base member virtual implementation will be called
+ for mocked classes if no setup is matched. Defaults to <see langword="false"/>.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.DefaultValue">
+ <summary>
+ Specifies the behavior to use when returning default values for
+ unexpected invocations on loose mocks.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.Object">
+ <summary>
+ Gets the mocked object instance.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.MockedType">
+ <summary>
+ Retrieves the type of the mocked object, its generic type argument.
+ This is used in the auto-mocking of hierarchy access.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.DefaultValueProvider">
+ <summary>
+ Specifies the class that will determine the default
+ value to return when invocations are made that
+ have no setups and need to return a default
+ value (for loose mocks).
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.ImplementedInterfaces">
+ <summary>
+ Exposes the list of extra interfaces implemented by the mock.
+ </summary>
+ </member>
+ <member name="T:Moq.MockRepository">
+ <summary>
+ Utility repository class to use to construct multiple
+ mocks when consistent verification is
+ desired for all of them.
+ </summary>
+ <remarks>
+ If multiple mocks will be created during a test, passing
+ the desired <see cref="T:Moq.MockBehavior"/> (if different than the
+ <see cref="F:Moq.MockBehavior.Default"/> or the one
+ passed to the repository constructor) and later verifying each
+ mock can become repetitive and tedious.
+ <para>
+ This repository class helps in that scenario by providing a
+ simplified creation of multiple mocks with a default
+ <see cref="T:Moq.MockBehavior"/> (unless overriden by calling
+ <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/>) and posterior verification.
+ </para>
+ </remarks>
+ <example group="repository">
+ The following is a straightforward example on how to
+ create and automatically verify strict mocks using a <see cref="T:Moq.MockRepository"/>:
+ <code>
+ var repository = new MockRepository(MockBehavior.Strict);
+
+ var foo = repository.Create<IFoo>();
+ var bar = repository.Create<IBar>();
+
+ // no need to call Verifiable() on the setup
+ // as we'll be validating all of them anyway.
+ foo.Setup(f => f.Do());
+ bar.Setup(b => b.Redo());
+
+ // exercise the mocks here
+
+ repository.VerifyAll();
+ // At this point all setups are already checked
+ // and an optional MockException might be thrown.
+ // Note also that because the mocks are strict, any invocation
+ // that doesn't have a matching setup will also throw a MockException.
+ </code>
+ The following examples shows how to setup the repository
+ to create loose mocks and later verify only verifiable setups:
+ <code>
+ var repository = new MockRepository(MockBehavior.Loose);
+
+ var foo = repository.Create<IFoo>();
+ var bar = repository.Create<IBar>();
+
+ // this setup will be verified when we verify the repository
+ foo.Setup(f => f.Do()).Verifiable();
+
+ // this setup will NOT be verified
+ foo.Setup(f => f.Calculate());
+
+ // this setup will be verified when we verify the repository
+ bar.Setup(b => b.Redo()).Verifiable();
+
+ // exercise the mocks here
+ // note that because the mocks are Loose, members
+ // called in the interfaces for which no matching
+ // setups exist will NOT throw exceptions,
+ // and will rather return default values.
+
+ repository.Verify();
+ // At this point verifiable setups are already checked
+ // and an optional MockException might be thrown.
+ </code>
+ The following examples shows how to setup the repository with a
+ default strict behavior, overriding that default for a
+ specific mock:
+ <code>
+ var repository = new MockRepository(MockBehavior.Strict);
+
+ // this particular one we want loose
+ var foo = repository.Create<IFoo>(MockBehavior.Loose);
+ var bar = repository.Create<IBar>();
+
+ // specify setups
+
+ // exercise the mocks here
+
+ repository.Verify();
+ </code>
+ </example>
+ <seealso cref="T:Moq.MockBehavior"/>
+ </member>
+ <member name="T:Moq.MockFactory">
+ <summary>
+ Utility factory class to use to construct multiple
+ mocks when consistent verification is
+ desired for all of them.
+ </summary>
+ <remarks>
+ If multiple mocks will be created during a test, passing
+ the desired <see cref="T:Moq.MockBehavior"/> (if different than the
+ <see cref="F:Moq.MockBehavior.Default"/> or the one
+ passed to the factory constructor) and later verifying each
+ mock can become repetitive and tedious.
+ <para>
+ This factory class helps in that scenario by providing a
+ simplified creation of multiple mocks with a default
+ <see cref="T:Moq.MockBehavior"/> (unless overriden by calling
+ <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/>) and posterior verification.
+ </para>
+ </remarks>
+ <example group="factory">
+ The following is a straightforward example on how to
+ create and automatically verify strict mocks using a <see cref="T:Moq.MockFactory"/>:
+ <code>
+ var factory = new MockFactory(MockBehavior.Strict);
+
+ var foo = factory.Create<IFoo>();
+ var bar = factory.Create<IBar>();
+
+ // no need to call Verifiable() on the setup
+ // as we'll be validating all of them anyway.
+ foo.Setup(f => f.Do());
+ bar.Setup(b => b.Redo());
+
+ // exercise the mocks here
+
+ factory.VerifyAll();
+ // At this point all setups are already checked
+ // and an optional MockException might be thrown.
+ // Note also that because the mocks are strict, any invocation
+ // that doesn't have a matching setup will also throw a MockException.
+ </code>
+ The following examples shows how to setup the factory
+ to create loose mocks and later verify only verifiable setups:
+ <code>
+ var factory = new MockFactory(MockBehavior.Loose);
+
+ var foo = factory.Create<IFoo>();
+ var bar = factory.Create<IBar>();
+
+ // this setup will be verified when we verify the factory
+ foo.Setup(f => f.Do()).Verifiable();
+
+ // this setup will NOT be verified
+ foo.Setup(f => f.Calculate());
+
+ // this setup will be verified when we verify the factory
+ bar.Setup(b => b.Redo()).Verifiable();
+
+ // exercise the mocks here
+ // note that because the mocks are Loose, members
+ // called in the interfaces for which no matching
+ // setups exist will NOT throw exceptions,
+ // and will rather return default values.
+
+ factory.Verify();
+ // At this point verifiable setups are already checked
+ // and an optional MockException might be thrown.
+ </code>
+ The following examples shows how to setup the factory with a
+ default strict behavior, overriding that default for a
+ specific mock:
+ <code>
+ var factory = new MockFactory(MockBehavior.Strict);
+
+ // this particular one we want loose
+ var foo = factory.Create<IFoo>(MockBehavior.Loose);
+ var bar = factory.Create<IBar>();
+
+ // specify setups
+
+ // exercise the mocks here
+
+ factory.Verify();
+ </code>
+ </example>
+ <seealso cref="T:Moq.MockBehavior"/>
+ </member>
+ <member name="M:Moq.MockFactory.#ctor(Moq.MockBehavior)">
+ <summary>
+ Initializes the factory with the given <paramref name="defaultBehavior"/>
+ for newly created mocks from the factory.
+ </summary>
+ <param name="defaultBehavior">The behavior to use for mocks created
+ using the <see cref="M:Moq.MockFactory.Create``1"/> factory method if not overriden
+ by using the <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/> overload.</param>
+ </member>
+ <member name="M:Moq.MockFactory.Create``1">
+ <summary>
+ Creates a new mock with the default <see cref="T:Moq.MockBehavior"/>
+ specified at factory construction time.
+ </summary>
+ <typeparam name="T">Type to mock.</typeparam>
+ <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
+ <example ignore="true">
+ <code>
+ var factory = new MockFactory(MockBehavior.Strict);
+
+ var foo = factory.Create<IFoo>();
+ // use mock on tests
+
+ factory.VerifyAll();
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.MockFactory.Create``1(System.Object[])">
+ <summary>
+ Creates a new mock with the default <see cref="T:Moq.MockBehavior"/>
+ specified at factory construction time and with the
+ the given constructor arguments for the class.
+ </summary>
+ <remarks>
+ The mock will try to find the best match constructor given the
+ constructor arguments, and invoke that to initialize the instance.
+ This applies only to classes, not interfaces.
+ </remarks>
+ <typeparam name="T">Type to mock.</typeparam>
+ <param name="args">Constructor arguments for mocked classes.</param>
+ <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
+ <example ignore="true">
+ <code>
+ var factory = new MockFactory(MockBehavior.Default);
+
+ var mock = factory.Create<MyBase>("Foo", 25, true);
+ // use mock on tests
+
+ factory.Verify();
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.MockFactory.Create``1(Moq.MockBehavior)">
+ <summary>
+ Creates a new mock with the given <paramref name="behavior"/>.
+ </summary>
+ <typeparam name="T">Type to mock.</typeparam>
+ <param name="behavior">Behavior to use for the mock, which overrides
+ the default behavior specified at factory construction time.</param>
+ <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
+ <example group="factory">
+ The following example shows how to create a mock with a different
+ behavior to that specified as the default for the factory:
+ <code>
+ var factory = new MockFactory(MockBehavior.Strict);
+
+ var foo = factory.Create<IFoo>(MockBehavior.Loose);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.MockFactory.Create``1(Moq.MockBehavior,System.Object[])">
+ <summary>
+ Creates a new mock with the given <paramref name="behavior"/>
+ and with the the given constructor arguments for the class.
+ </summary>
+ <remarks>
+ The mock will try to find the best match constructor given the
+ constructor arguments, and invoke that to initialize the instance.
+ This applies only to classes, not interfaces.
+ </remarks>
+ <typeparam name="T">Type to mock.</typeparam>
+ <param name="behavior">Behavior to use for the mock, which overrides
+ the default behavior specified at factory construction time.</param>
+ <param name="args">Constructor arguments for mocked classes.</param>
+ <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
+ <example group="factory">
+ The following example shows how to create a mock with a different
+ behavior to that specified as the default for the factory, passing
+ constructor arguments:
+ <code>
+ var factory = new MockFactory(MockBehavior.Default);
+
+ var mock = factory.Create<MyBase>(MockBehavior.Strict, "Foo", 25, true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.MockFactory.CreateMock``1(Moq.MockBehavior,System.Object[])">
+ <summary>
+ Implements creation of a new mock within the factory.
+ </summary>
+ <typeparam name="T">Type to mock.</typeparam>
+ <param name="behavior">The behavior for the new mock.</param>
+ <param name="args">Optional arguments for the construction of the mock.</param>
+ </member>
+ <member name="M:Moq.MockFactory.Verify">
+ <summary>
+ Verifies all verifiable expectations on all mocks created
+ by this factory.
+ </summary>
+ <seealso cref="M:Moq.Mock.Verify"/>
+ <exception cref="T:Moq.MockException">One or more mocks had expectations that were not satisfied.</exception>
+ </member>
+ <member name="M:Moq.MockFactory.VerifyAll">
+ <summary>
+ Verifies all verifiable expectations on all mocks created
+ by this factory.
+ </summary>
+ <seealso cref="M:Moq.Mock.Verify"/>
+ <exception cref="T:Moq.MockException">One or more mocks had expectations that were not satisfied.</exception>
+ </member>
+ <member name="M:Moq.MockFactory.VerifyMocks(System.Action{Moq.Mock})">
+ <summary>
+ Invokes <paramref name="verifyAction"/> for each mock
+ in <see cref="P:Moq.MockFactory.Mocks"/>, and accumulates the resulting
+ <see cref="T:Moq.MockVerificationException"/> that might be
+ thrown from the action.
+ </summary>
+ <param name="verifyAction">The action to execute against
+ each mock.</param>
+ </member>
+ <member name="P:Moq.MockFactory.CallBase">
+ <summary>
+ Whether the base member virtual implementation will be called
+ for mocked classes if no setup is matched. Defaults to <see langword="false"/>.
+ </summary>
+ </member>
+ <member name="P:Moq.MockFactory.DefaultValue">
+ <summary>
+ Specifies the behavior to use when returning default values for
+ unexpected invocations on loose mocks.
+ </summary>
+ </member>
+ <member name="P:Moq.MockFactory.Mocks">
+ <summary>
+ Gets the mocks that have been created by this factory and
+ that will get verified together.
+ </summary>
+ </member>
+ <member name="M:Moq.MockRepository.Of``1">
+ <summary>
+ Access the universe of mocks of the given type, to retrieve those
+ that behave according to the LINQ query specification.
+ </summary>
+ <typeparam name="T">The type of the mocked object to query.</typeparam>
+ </member>
+ <member name="M:Moq.MockRepository.Of``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Access the universe of mocks of the given type, to retrieve those
+ that behave according to the LINQ query specification.
+ </summary>
+ <param name="specification">The predicate with the setup expressions.</param>
+ <typeparam name="T">The type of the mocked object to query.</typeparam>
+ </member>
+ <member name="M:Moq.MockRepository.OneOf``1">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.MockRepository.OneOf``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <param name="specification">The predicate with the setup expressions.</param>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.MockRepository.CreateMockQuery``1">
+ <summary>
+ Creates the mock query with the underlying queriable implementation.
+ </summary>
+ </member>
+ <member name="M:Moq.MockRepository.CreateQueryable``1">
+ <summary>
+ Wraps the enumerator inside a queryable.
+ </summary>
+ </member>
+ <member name="M:Moq.MockRepository.CreateMocks``1">
+ <summary>
+ Method that is turned into the actual call from .Query{T}, to
+ transform the queryable query into a normal enumerable query.
+ This method is never used directly by consumers.
+ </summary>
+ </member>
+ <member name="M:Moq.MockRepository.#ctor(Moq.MockBehavior)">
+ <summary>
+ Initializes the repository with the given <paramref name="defaultBehavior"/>
+ for newly created mocks from the repository.
+ </summary>
+ <param name="defaultBehavior">The behavior to use for mocks created
+ using the <see cref="M:Moq.MockFactory.Create``1"/> repository method if not overriden
+ by using the <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/> overload.</param>
+ </member>
+ <member name="T:Moq.EmptyDefaultValueProvider">
+ <summary>
+ A <see cref="T:Moq.IDefaultValueProvider"/> that returns an empty default value
+ for invocations that do not have setups or return values, with loose mocks.
+ This is the default behavior for a mock.
+ </summary>
+ </member>
+ <member name="T:Moq.IDefaultValueProvider">
+ <summary>
+ Interface to be implemented by classes that determine the
+ default value of non-expected invocations.
+ </summary>
+ </member>
+ <member name="M:Moq.IDefaultValueProvider.DefineDefault``1(``0)">
+ <summary>
+ Defines the default value to return in all the methods returning <typeparamref name="T"/>.
+ </summary><typeparam name="T">The type of the return value.</typeparam><param name="value">The value to set as default.</param>
+ </member>
+ <member name="M:Moq.IDefaultValueProvider.ProvideDefault(System.Reflection.MethodInfo)">
+ <summary>
+ Provides a value for the given member and arguments.
+ </summary><param name="member">
+ The member to provide a default value for.
+ </param>
+ </member>
+ <member name="T:Moq.ExpressionStringBuilder">
+ <summary>
+ The intention of <see cref="T:Moq.ExpressionStringBuilder"/> is to create a more readable
+ string representation for the failure message.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.Flow.ICallbackResult">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.IThrows">
+ <summary>
+ Defines the <c>Throws</c> verb.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.IThrows.Throws(System.Exception)">
+ <summary>
+ Specifies the exception to throw when the method is invoked.
+ </summary>
+ <param name="exception">Exception instance to throw.</param>
+ <example>
+ This example shows how to throw an exception when the method is
+ invoked with an empty string argument:
+ <code>
+ mock.Setup(x => x.Execute(""))
+ .Throws(new ArgumentException());
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IThrows.Throws``1">
+ <summary>
+ Specifies the type of exception to throw when the method is invoked.
+ </summary>
+ <typeparam name="TException">Type of exception to instantiate and throw when the setup is matched.</typeparam>
+ <example>
+ This example shows how to throw an exception when the method is
+ invoked with an empty string argument:
+ <code>
+ mock.Setup(x => x.Execute(""))
+ .Throws<ArgumentException>();
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.IThrowsResult">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.IOccurrence">
+ <summary>
+ Defines occurrence members to constraint setups.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.IOccurrence.AtMostOnce">
+ <summary>
+ The expected invocation can happen at most once.
+ </summary>
+ <example>
+ <code>
+ var mock = new Mock<ICommand>();
+ mock.Setup(foo => foo.Execute("ping"))
+ .AtMostOnce();
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IOccurrence.AtMost(System.Int32)">
+ <summary>
+ The expected invocation can happen at most specified number of times.
+ </summary>
+ <param name="callCount">The number of times to accept calls.</param>
+ <example>
+ <code>
+ var mock = new Mock<ICommand>();
+ mock.Setup(foo => foo.Execute("ping"))
+ .AtMost( 5 );
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.IVerifies">
+ <summary>
+ Defines the <c>Verifiable</c> verb.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.IVerifies.Verifiable">
+ <summary>
+ Marks the expectation as verifiable, meaning that a call
+ to <see cref="M:Moq.Mock.Verify"/> will check if this particular
+ expectation was met.
+ </summary>
+ <example>
+ The following example marks the expectation as verifiable:
+ <code>
+ mock.Expect(x => x.Execute("ping"))
+ .Returns(true)
+ .Verifiable();
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IVerifies.Verifiable(System.String)">
+ <summary>
+ Marks the expectation as verifiable, meaning that a call
+ to <see cref="M:Moq.Mock.Verify"/> will check if this particular
+ expectation was met, and specifies a message for failures.
+ </summary>
+ <example>
+ The following example marks the expectation as verifiable:
+ <code>
+ mock.Expect(x => x.Execute("ping"))
+ .Returns(true)
+ .Verifiable("Ping should be executed always!");
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.ISetup`1">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.MethodCallReturn">
+ <devdoc>
+ We need this non-generics base class so that
+ we can use <see cref="P:Moq.MethodCallReturn.HasReturnValue"/> from
+ generic code.
+ </devdoc>
+ </member>
+ <member name="T:Moq.Language.Flow.ISetup`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.Flow.IReturnsThrows`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.Flow.ISetupGetter`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.ICallbackGetter`2">
+ <summary>
+ Defines the <c>Callback</c> verb for property getter setups.
+ </summary>
+ <seealso cref="M:Moq.Mock`1.SetupGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})"/>
+ <typeparam name="TMock">Mocked type.</typeparam>
+ <typeparam name="TProperty">Type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Language.ICallbackGetter`2.Callback(System.Action)">
+ <summary>
+ Specifies a callback to invoke when the property is retrieved.
+ </summary>
+ <param name="action">Callback method to invoke.</param>
+ <example>
+ Invokes the given callback with the property value being set.
+ <code>
+ mock.SetupGet(x => x.Suspended)
+ .Callback(() => called = true)
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.IReturnsThrowsGetter`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.IReturnsGetter`2">
+ <summary>
+ Defines the <c>Returns</c> verb for property get setups.
+ </summary>
+ <typeparam name="TMock">Mocked type.</typeparam>
+ <typeparam name="TProperty">Type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Language.IReturnsGetter`2.Returns(`1)">
+ <summary>
+ Specifies the value to return.
+ </summary>
+ <param name="value">The value to return, or <see langword="null"/>.</param>
+ <example>
+ Return a <c>true</c> value from the property getter call:
+ <code>
+ mock.SetupGet(x => x.Suspended)
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturnsGetter`2.Returns(System.Func{`1})">
+ <summary>
+ Specifies a function that will calculate the value to return for the property.
+ </summary>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <example>
+ Return a calculated value when the property is retrieved:
+ <code>
+ mock.SetupGet(x => x.Suspended)
+ .Returns(() => returnValues[0]);
+ </code>
+ The lambda expression to retrieve the return value is lazy-executed,
+ meaning that its value may change depending on the moment the property
+ is retrieved and the value the <c>returnValues</c> array has at
+ that moment.
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.IReturnsResult`1">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:System.Action`5">
+ <summary>
+ Encapsulates a method that has five parameters and does not return a value.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ </member>
+ <member name="T:System.Func`6">
+ <summary>
+ Encapsulates a method that has five parameters and returns a value of the type specified by the <typeparamref name="TResult" /> parameter.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <return>The return value of the method that this delegate encapsulates.</return>
+ </member>
+ <member name="T:System.Action`6">
+ <summary>
+ Encapsulates a method that has six parameters and does not return a value.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ </member>
+ <member name="T:System.Func`7">
+ <summary>
+ Encapsulates a method that has six parameters and returns a value of the type specified by the <typeparamref name="TResult" /> parameter.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <return>The return value of the method that this delegate encapsulates.</return>
+ </member>
+ <member name="T:System.Action`7">
+ <summary>
+ Encapsulates a method that has seven parameters and does not return a value.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ </member>
+ <member name="T:System.Func`8">
+ <summary>
+ Encapsulates a method that has seven parameters and returns a value of the type specified by the <typeparamref name="TResult" /> parameter.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <return>The return value of the method that this delegate encapsulates.</return>
+ </member>
+ <member name="T:System.Action`8">
+ <summary>
+ Encapsulates a method that has eight parameters and does not return a value.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ </member>
+ <member name="T:System.Func`9">
+ <summary>
+ Encapsulates a method that has eight parameters and returns a value of the type specified by the <typeparamref name="TResult" /> parameter.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <return>The return value of the method that this delegate encapsulates.</return>
+ </member>
+ <member name="T:System.Action`9">
+ <summary>
+ Encapsulates a method that has nine parameters and does not return a value.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ </member>
+ <member name="T:System.Func`10">
+ <summary>
+ Encapsulates a method that has nine parameters and returns a value of the type specified by the <typeparamref name="TResult" /> parameter.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <return>The return value of the method that this delegate encapsulates.</return>
+ </member>
+ <member name="T:System.Action`10">
+ <summary>
+ Encapsulates a method that has ten parameters and does not return a value.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ </member>
+ <member name="T:System.Func`11">
+ <summary>
+ Encapsulates a method that has ten parameters and returns a value of the type specified by the <typeparamref name="TResult" /> parameter.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <return>The return value of the method that this delegate encapsulates.</return>
+ </member>
+ <member name="T:System.Action`11">
+ <summary>
+ Encapsulates a method that has eleven parameters and does not return a value.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
+ </member>
+ <member name="T:System.Func`12">
+ <summary>
+ Encapsulates a method that has eleven parameters and returns a value of the type specified by the <typeparamref name="TResult" /> parameter.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
+ <return>The return value of the method that this delegate encapsulates.</return>
+ </member>
+ <member name="T:System.Action`12">
+ <summary>
+ Encapsulates a method that has twelve parameters and does not return a value.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
+ </member>
+ <member name="T:System.Func`13">
+ <summary>
+ Encapsulates a method that has twelve parameters and returns a value of the type specified by the <typeparamref name="TResult" /> parameter.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
+ <return>The return value of the method that this delegate encapsulates.</return>
+ </member>
+ <member name="T:System.Action`13">
+ <summary>
+ Encapsulates a method that has thirteen parameters and does not return a value.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
+ </member>
+ <member name="T:System.Func`14">
+ <summary>
+ Encapsulates a method that has thirteen parameters and returns a value of the type specified by the <typeparamref name="TResult" /> parameter.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
+ <return>The return value of the method that this delegate encapsulates.</return>
+ </member>
+ <member name="T:System.Action`14">
+ <summary>
+ Encapsulates a method that has fourteen parameters and does not return a value.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T14">The type of the fourteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg14">The fourteenth parameter of the method that this delegate encapsulates.</param>
+ </member>
+ <member name="T:System.Func`15">
+ <summary>
+ Encapsulates a method that has fourteen parameters and returns a value of the type specified by the <typeparamref name="TResult" /> parameter.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T14">The type of the fourteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg14">The fourteenth parameter of the method that this delegate encapsulates.</param>
+ <return>The return value of the method that this delegate encapsulates.</return>
+ </member>
+ <member name="T:System.Action`15">
+ <summary>
+ Encapsulates a method that has fifteen parameters and does not return a value.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T14">The type of the fourteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T15">The type of the fifteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg14">The fourteenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg15">The fifteenth parameter of the method that this delegate encapsulates.</param>
+ </member>
+ <member name="T:System.Func`16">
+ <summary>
+ Encapsulates a method that has fifteen parameters and returns a value of the type specified by the <typeparamref name="TResult" /> parameter.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T14">The type of the fourteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T15">The type of the fifteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg14">The fourteenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg15">The fifteenth parameter of the method that this delegate encapsulates.</param>
+ <return>The return value of the method that this delegate encapsulates.</return>
+ </member>
+ <member name="T:System.Action`16">
+ <summary>
+ Encapsulates a method that has sixteen parameters and does not return a value.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T14">The type of the fourteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T15">The type of the fifteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T16">The type of the sixteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg14">The fourteenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg15">The fifteenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg16">The sixteenth parameter of the method that this delegate encapsulates.</param>
+ </member>
+ <member name="T:System.Func`17">
+ <summary>
+ Encapsulates a method that has sixteen parameters and returns a value of the type specified by the <typeparamref name="TResult" /> parameter.
+ </summary>
+ <typeparam name="T1">The type of the first parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T2">The type of the second parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T3">The type of the third parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T4">The type of the fourth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T5">The type of the fifth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T6">The type of the sixth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T7">The type of the seventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T8">The type of the eighth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T9">The type of the nineth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T10">The type of the tenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T11">The type of the eleventh parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T12">The type of the twelfth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T13">The type of the thirteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T14">The type of the fourteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T15">The type of the fifteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="T16">The type of the sixteenth parameter of the method that this delegate encapsulates.</typeparam>
+ <typeparam name="TResult">The type of the return value of the method that this delegate encapsulates.</typeparam>
+ <param name="arg1">The first parameter of the method that this delegate encapsulates.</param>
+ <param name="arg2">The second parameter of the method that this delegate encapsulates.</param>
+ <param name="arg3">The third parameter of the method that this delegate encapsulates.</param>
+ <param name="arg4">The fourth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg5">The fifth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg6">The sixth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg7">The seventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg8">The eighth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg9">The nineth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg10">The tenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg11">The eleventh parameter of the method that this delegate encapsulates.</param>
+ <param name="arg12">The twelfth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg13">The thirteenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg14">The fourteenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg15">The fifteenth parameter of the method that this delegate encapsulates.</param>
+ <param name="arg16">The sixteenth parameter of the method that this delegate encapsulates.</param>
+ <return>The return value of the method that this delegate encapsulates.</return>
+ </member>
+ <member name="T:Moq.MockSequence">
+ <summary>
+ Helper class to setup a full trace between many mocks
+ </summary>
+ </member>
+ <member name="M:Moq.MockSequence.#ctor">
+ <summary>
+ Initialize a trace setup
+ </summary>
+ </member>
+ <member name="P:Moq.MockSequence.Cyclic">
+ <summary>
+ Allow sequence to be repeated
+ </summary>
+ </member>
+ <member name="T:Moq.MockSequenceHelper">
+ <summary>
+ define nice api
+ </summary>
+ </member>
+ <member name="M:Moq.MockSequenceHelper.InSequence``1(Moq.Mock{``0},Moq.MockSequence)">
+ <summary>
+ Perform an expectation in the trace.
+ </summary>
+ </member>
+ <member name="T:Moq.MatcherAttribute">
+ <summary>
+ Marks a method as a matcher, which allows complete replacement
+ of the built-in <see cref="T:Moq.It"/> class with your own argument
+ matching rules.
+ </summary>
+ <remarks>
+ <b>This feature has been deprecated in favor of the new
+ and simpler <see cref="T:Moq.Match`1"/>.
+ </b>
+ <para>
+ The argument matching is used to determine whether a concrete
+ invocation in the mock matches a given setup. This
+ matching mechanism is fully extensible.
+ </para>
+ <para>
+ There are two parts of a matcher: the compiler matcher
+ and the runtime matcher.
+ <list type="bullet">
+ <item>
+ <term>Compiler matcher</term>
+ <description>Used to satisfy the compiler requirements for the
+ argument. Needs to be a method optionally receiving any arguments
+ you might need for the matching, but with a return type that
+ matches that of the argument.
+ <para>
+ Let's say I want to match a lists of orders that contains
+ a particular one. I might create a compiler matcher like the following:
+ </para>
+ <code>
+ public static class Orders
+ {
+ [Matcher]
+ public static IEnumerable<Order> Contains(Order order)
+ {
+ return null;
+ }
+ }
+ </code>
+ Now we can invoke this static method instead of an argument in an
+ invocation:
+ <code>
+ var order = new Order { ... };
+ var mock = new Mock<IRepository<Order>>();
+
+ mock.Setup(x => x.Save(Orders.Contains(order)))
+ .Throws<ArgumentException>();
+ </code>
+ Note that the return value from the compiler matcher is irrelevant.
+ This method will never be called, and is just used to satisfy the
+ compiler and to signal Moq that this is not a method that we want
+ to be invoked at runtime.
+ </description>
+ </item>
+ <item>
+ <term>Runtime matcher</term>
+ <description>
+ The runtime matcher is the one that will actually perform evaluation
+ when the test is run, and is defined by convention to have the
+ same signature as the compiler matcher, but where the return
+ value is the first argument to the call, which contains the
+ object received by the actual invocation at runtime:
+ <code>
+ public static bool Contains(IEnumerable<Order> orders, Order order)
+ {
+ return orders.Contains(order);
+ }
+ </code>
+ At runtime, the mocked method will be invoked with a specific
+ list of orders. This value will be passed to this runtime
+ matcher as the first argument, while the second argument is the
+ one specified in the setup (<c>x.Save(Orders.Contains(order))</c>).
+ <para>
+ The boolean returned determines whether the given argument has been
+ matched. If all arguments to the expected method are matched, then
+ the setup matches and is evaluated.
+ </para>
+ </description>
+ </item>
+ </list>
+ </para>
+ Using this extensible infrastructure, you can easily replace the entire
+ <see cref="T:Moq.It"/> set of matchers with your own. You can also avoid the
+ typical (and annoying) lengthy expressions that result when you have
+ multiple arguments that use generics.
+ </remarks>
+ <example>
+ The following is the complete example explained above:
+ <code>
+ public static class Orders
+ {
+ [Matcher]
+ public static IEnumerable<Order> Contains(Order order)
+ {
+ return null;
+ }
+
+ public static bool Contains(IEnumerable<Order> orders, Order order)
+ {
+ return orders.Contains(order);
+ }
+ }
+ </code>
+ And the concrete test using this matcher:
+ <code>
+ var order = new Order { ... };
+ var mock = new Mock<IRepository<Order>>();
+
+ mock.Setup(x => x.Save(Orders.Contains(order)))
+ .Throws<ArgumentException>();
+
+ // use mock, invoke Save, and have the matcher filter.
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Mock`1">
+ <summary>
+ Provides a mock implementation of <typeparamref name="T"/>.
+ </summary><remarks>
+ Any interface type can be used for mocking, but for classes, only abstract and virtual members can be mocked.
+ <para>
+ The behavior of the mock with regards to the setups and the actual calls is determined
+ by the optional <see cref="T:Moq.MockBehavior"/> that can be passed to the <see cref="M:Moq.Mock`1.#ctor(Moq.MockBehavior)"/>
+ constructor.
+ </para>
+ </remarks><typeparam name="T">Type to mock, which can be an interface or a class.</typeparam><example group="overview" order="0">
+ The following example shows establishing setups with specific values
+ for method invocations:
+ <code>
+ // Arrange
+ var order = new Order(TALISKER, 50);
+ var mock = new Mock<IWarehouse>();
+
+ mock.Setup(x => x.HasInventory(TALISKER, 50)).Returns(true);
+
+ // Act
+ order.Fill(mock.Object);
+
+ // Assert
+ Assert.True(order.IsFilled);
+ </code>
+ The following example shows how to use the <see cref="T:Moq.It"/> class
+ to specify conditions for arguments instead of specific values:
+ <code>
+ // Arrange
+ var order = new Order(TALISKER, 50);
+ var mock = new Mock<IWarehouse>();
+
+ // shows how to expect a value within a range
+ mock.Setup(x => x.HasInventory(
+ It.IsAny<string>(),
+ It.IsInRange(0, 100, Range.Inclusive)))
+ .Returns(false);
+
+ // shows how to throw for unexpected calls.
+ mock.Setup(x => x.Remove(
+ It.IsAny<string>(),
+ It.IsAny<int>()))
+ .Throws(new InvalidOperationException());
+
+ // Act
+ order.Fill(mock.Object);
+
+ // Assert
+ Assert.False(order.IsFilled);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.Expect(System.Linq.Expressions.Expression{System.Action{`0}})">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.Expect``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.ExpectGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.ExpectSet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.ExpectSet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},``0)">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor(System.Boolean)">
+ <summary>
+ Ctor invoked by AsTInterface exclusively.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor">
+ <summary>
+ Initializes an instance of the mock with <see cref="F:Moq.MockBehavior.Default">default behavior</see>.
+ </summary><example>
+ <code>var mock = new Mock<IFormatProvider>();</code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor(System.Object[])">
+ <summary>
+ Initializes an instance of the mock with <see cref="F:Moq.MockBehavior.Default">default behavior</see> and with
+ the given constructor arguments for the class. (Only valid when <typeparamref name="T"/> is a class)
+ </summary><remarks>
+ The mock will try to find the best match constructor given the constructor arguments, and invoke that
+ to initialize the instance. This applies only for classes, not interfaces.
+ </remarks><example>
+ <code>var mock = new Mock<MyProvider>(someArgument, 25);</code>
+ </example><param name="args">Optional constructor arguments if the mocked type is a class.</param>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor(Moq.MockBehavior)">
+ <summary>
+ Initializes an instance of the mock with the specified <see cref="T:Moq.MockBehavior">behavior</see>.
+ </summary><example>
+ <code>var mock = new Mock<IFormatProvider>(MockBehavior.Relaxed);</code>
+ </example><param name="behavior">Behavior of the mock.</param>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor(Moq.MockBehavior,System.Object[])">
+ <summary>
+ Initializes an instance of the mock with a specific <see cref="T:Moq.MockBehavior">behavior</see> with
+ the given constructor arguments for the class.
+ </summary><remarks>
+ The mock will try to find the best match constructor given the constructor arguments, and invoke that
+ to initialize the instance. This applies only to classes, not interfaces.
+ </remarks><example>
+ <code>var mock = new Mock<MyProvider>(someArgument, 25);</code>
+ </example><param name="behavior">Behavior of the mock.</param><param name="args">Optional constructor arguments if the mocked type is a class.</param>
+ </member>
+ <member name="M:Moq.Mock`1.OnGetObject">
+ <summary>
+ Returns the mocked object value.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.Setup(System.Linq.Expressions.Expression{System.Action{`0}})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a void method.
+ </summary><remarks>
+ If more than one setup is specified for the same method or property,
+ the latest one wins and is the one that will be executed.
+ </remarks><param name="expression">Lambda expression that specifies the expected method invocation.</param><example group="setups">
+ <code>
+ var mock = new Mock<IProcessor>();
+ mock.Setup(x => x.Execute("ping"));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.Setup``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a value returning method.
+ </summary><typeparam name="TResult">Type of the return value. Typically omitted as it can be inferred from the expression.</typeparam><remarks>
+ If more than one setup is specified for the same method or property,
+ the latest one wins and is the one that will be executed.
+ </remarks><param name="expression">Lambda expression that specifies the method invocation.</param><example group="setups">
+ <code>
+ mock.Setup(x => x.HasInventory("Talisker", 50)).Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a property getter.
+ </summary><remarks>
+ If more than one setup is set for the same property getter,
+ the latest one wins and is the one that will be executed.
+ </remarks><typeparam name="TProperty">Type of the property. Typically omitted as it can be inferred from the expression.</typeparam><param name="expression">Lambda expression that specifies the property getter.</param><example group="setups">
+ <code>
+ mock.SetupGet(x => x.Suspended)
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupSet``1(System.Action{`0})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a property setter.
+ </summary><remarks>
+ If more than one setup is set for the same property setter,
+ the latest one wins and is the one that will be executed.
+ <para>
+ This overloads allows the use of a callback already
+ typed for the property type.
+ </para>
+ </remarks><typeparam name="TProperty">Type of the property. Typically omitted as it can be inferred from the expression.</typeparam><param name="setterExpression">The Lambda expression that sets a property to a value.</param><example group="setups">
+ <code>
+ mock.SetupSet(x => x.Suspended = true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupSet(System.Action{`0})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a property setter.
+ </summary><remarks>
+ If more than one setup is set for the same property setter,
+ the latest one wins and is the one that will be executed.
+ </remarks><param name="setterExpression">Lambda expression that sets a property to a value.</param><example group="setups">
+ <code>
+ mock.SetupSet(x => x.Suspended = true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupProperty``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Specifies that the given property should have "property behavior",
+ meaning that setting its value will cause it to be saved and
+ later returned when the property is requested. (this is also
+ known as "stubbing").
+ </summary><typeparam name="TProperty">
+ Type of the property, inferred from the property
+ expression (does not need to be specified).
+ </typeparam><param name="property">Property expression to stub.</param><example>
+ If you have an interface with an int property <c>Value</c>, you might
+ stub it using the following straightforward call:
+ <code>
+ var mock = new Mock<IHaveValue>();
+ mock.Stub(v => v.Value);
+ </code>
+ After the <c>Stub</c> call has been issued, setting and
+ retrieving the object value will behave as expected:
+ <code>
+ IHaveValue v = mock.Object;
+
+ v.Value = 5;
+ Assert.Equal(5, v.Value);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupProperty``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},``0)">
+ <summary>
+ Specifies that the given property should have "property behavior",
+ meaning that setting its value will cause it to be saved and
+ later returned when the property is requested. This overload
+ allows setting the initial value for the property. (this is also
+ known as "stubbing").
+ </summary><typeparam name="TProperty">
+ Type of the property, inferred from the property
+ expression (does not need to be specified).
+ </typeparam><param name="property">Property expression to stub.</param><param name="initialValue">Initial value for the property.</param><example>
+ If you have an interface with an int property <c>Value</c>, you might
+ stub it using the following straightforward call:
+ <code>
+ var mock = new Mock<IHaveValue>();
+ mock.SetupProperty(v => v.Value, 5);
+ </code>
+ After the <c>SetupProperty</c> call has been issued, setting and
+ retrieving the object value will behave as expected:
+ <code>
+ IHaveValue v = mock.Object;
+ // Initial value was stored
+ Assert.Equal(5, v.Value);
+
+ // New value set which changes the initial value
+ v.Value = 6;
+ Assert.Equal(6, v.Value);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupAllProperties">
+ <summary>
+ Specifies that the all properties on the mock should have "property behavior",
+ meaning that setting its value will cause it to be saved and
+ later returned when the property is requested. (this is also
+ known as "stubbing"). The default value for each property will be the
+ one generated as specified by the <see cref="P:Moq.Mock.DefaultValue"/> property for the mock.
+ </summary><remarks>
+ If the mock <see cref="P:Moq.Mock.DefaultValue"/> is set to <see cref="F:Moq.DefaultValue.Mock"/>,
+ the mocked default values will also get all properties setup recursively.
+ </remarks>
+ </member>
+ <member name="M:Moq.Mock`1.When(System.Func{System.Boolean})">
+ <!-- No matching elements were found for the following include tag --><include file="Mock.Generic.xdoc" path="docs/doc[@for="Mock{T}.When"]/*"/>
+ </member>
+ <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}})">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock. Use
+ in conjuntion with the default <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><example group="verification">
+ This example assumes that the mock has been used, and later we want to verify that a given
+ invocation with specific parameters was performed:
+ <code>
+ var mock = new Mock<IProcessor>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't call Execute with a "ping" string argument.
+ mock.Verify(proc => proc.Execute("ping"));
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}},Moq.Times)">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock. Use
+ in conjuntion with the default <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}},System.String)">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock,
+ specifying a failure error message. Use in conjuntion with the default
+ <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><example group="verification">
+ This example assumes that the mock has been used, and later we want to verify that a given
+ invocation with specific parameters was performed:
+ <code>
+ var mock = new Mock<IProcessor>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't call Execute with a "ping" string argument.
+ mock.Verify(proc => proc.Execute("ping"));
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}},Moq.Times,System.String)">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock,
+ specifying a failure error message. Use in conjuntion with the default
+ <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param><param name="failMessage">Message to show if verification fails.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock. Use
+ in conjuntion with the default <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><example group="verification">
+ This example assumes that the mock has been used, and later we want to verify that a given
+ invocation with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't call HasInventory.
+ mock.Verify(warehouse => warehouse.HasInventory(TALISKER, 50));
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times)">
+ <summary>
+ Verifies that a specific invocation matching the given
+ expression was performed on the mock. Use in conjuntion
+ with the default <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},System.String)">
+ <summary>
+ Verifies that a specific invocation matching the given
+ expression was performed on the mock, specifying a failure
+ error message.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't call HasInventory.
+ mock.Verify(warehouse => warehouse.HasInventory(TALISKER, 50), "When filling orders, inventory has to be checked");
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times,System.String)">
+ <summary>
+ Verifies that a specific invocation matching the given
+ expression was performed on the mock, specifying a failure
+ error message.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Verifies that a property was read on the mock.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given property
+ was retrieved from it:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't retrieve the IsClosed property.
+ mock.VerifyGet(warehouse => warehouse.IsClosed);
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><typeparam name="TProperty">
+ Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.
+ </typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times)">
+ <summary>
+ Verifies that a property was read on the mock.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="times">The number of times a method is allowed to be called.</param><param name="expression">Expression to verify.</param><typeparam name="TProperty">
+ Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.
+ </typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},System.String)">
+ <summary>
+ Verifies that a property was read on the mock, specifying a failure
+ error message.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given property
+ was retrieved from it:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't retrieve the IsClosed property.
+ mock.VerifyGet(warehouse => warehouse.IsClosed);
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TProperty">
+ Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.
+ </typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times,System.String)">
+ <summary>
+ Verifies that a property was read on the mock, specifying a failure
+ error message.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="times">The number of times a method is allowed to be called.</param><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TProperty">
+ Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.
+ </typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifySet(System.Action{`0})">
+ <summary>
+ Verifies that a property was set on the mock.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given property
+ was set on it:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed = true);
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="setterExpression">Expression to verify.</param>
+ </member>
+ <member name="M:Moq.Mock`1.VerifySet(System.Action{`0},Moq.Times)">
+ <summary>
+ Verifies that a property was set on the mock.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="times">The number of times a method is allowed to be called.</param><param name="setterExpression">Expression to verify.</param>
+ </member>
+ <member name="M:Moq.Mock`1.VerifySet(System.Action{`0},System.String)">
+ <summary>
+ Verifies that a property was set on the mock, specifying
+ a failure message.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given property
+ was set on it:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed = true, "Warehouse should always be closed after the action");
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="setterExpression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param>
+ </member>
+ <member name="M:Moq.Mock`1.VerifySet(System.Action{`0},Moq.Times,System.String)">
+ <summary>
+ Verifies that a property was set on the mock, specifying
+ a failure message.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="times">The number of times a method is allowed to be called.</param><param name="setterExpression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Raise(System.Action{`0},System.EventArgs)">
+ <summary>
+ Raises the event referenced in <paramref name="eventExpression"/> using
+ the given <paramref name="args"/> argument.
+ </summary><exception cref="T:System.ArgumentException">
+ The <paramref name="args"/> argument is
+ invalid for the target event invocation, or the <paramref name="eventExpression"/> is
+ not an event attach or detach expression.
+ </exception><example>
+ The following example shows how to raise a <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event:
+ <code>
+ var mock = new Mock<IViewModel>();
+
+ mock.Raise(x => x.PropertyChanged -= null, new PropertyChangedEventArgs("Name"));
+ </code>
+ </example><example>
+ This example shows how to invoke an event with a custom event arguments
+ class in a view that will cause its corresponding presenter to
+ react by changing its state:
+ <code>
+ var mockView = new Mock<IOrdersView>();
+ var presenter = new OrdersPresenter(mockView.Object);
+
+ // Check that the presenter has no selection by default
+ Assert.Null(presenter.SelectedOrder);
+
+ // Raise the event with a specific arguments data
+ mockView.Raise(v => v.SelectionChanged += null, new OrderEventArgs { Order = new Order("moq", 500) });
+
+ // Now the presenter reacted to the event, and we have a selected order
+ Assert.NotNull(presenter.SelectedOrder);
+ Assert.Equal("moq", presenter.SelectedOrder.ProductName);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.Raise(System.Action{`0},System.Object[])">
+ <summary>
+ Raises the event referenced in <paramref name="eventExpression"/> using
+ the given <paramref name="args"/> argument for a non-EventHandler typed event.
+ </summary><exception cref="T:System.ArgumentException">
+ The <paramref name="args"/> arguments are
+ invalid for the target event invocation, or the <paramref name="eventExpression"/> is
+ not an event attach or detach expression.
+ </exception><example>
+ The following example shows how to raise a custom event that does not adhere to
+ the standard <c>EventHandler</c>:
+ <code>
+ var mock = new Mock<IViewModel>();
+
+ mock.Raise(x => x.MyEvent -= null, "Name", bool, 25);
+ </code>
+ </example>
+ </member>
+ <member name="P:Moq.Mock`1.Object">
+ <summary>
+ Exposes the mocked object instance.
+ </summary>
+ </member>
+ <member name="T:Moq.MockLegacyExtensions">
+ <summary>
+ Provides legacy API members as extensions so that
+ existing code continues to compile, but new code
+ doesn't see then.
+ </summary>
+ </member>
+ <member name="M:Moq.MockLegacyExtensions.SetupSet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1)">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.MockLegacyExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1)">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.MockLegacyExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="T:Moq.MockExtensions">
+ <summary>
+ Provides additional methods on mocks.
+ </summary>
+ <devdoc>
+ Provided as extension methods as they confuse the compiler
+ with the overloads taking Action.
+ </devdoc>
+ </member>
+ <member name="M:Moq.MockExtensions.SetupSet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a property setter, regardless of its value.
+ </summary>
+ <remarks>
+ If more than one setup is set for the same property setter,
+ the latest one wins and is the one that will be executed.
+ </remarks>
+ <typeparam name="TProperty">Type of the property. Typically omitted as it can be inferred from the expression.</typeparam>
+ <typeparam name="T">Type of the mock.</typeparam>
+ <param name="mock">The target mock for the setup.</param>
+ <param name="expression">Lambda expression that specifies the property setter.</param>
+ <example group="setups">
+ <code>
+ mock.SetupSet(x => x.Suspended);
+ </code>
+ </example>
+ <devdoc>
+ This method is not legacy, but must be on an extension method to avoid
+ confusing the compiler with the new Action syntax.
+ </devdoc>
+ </member>
+ <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
+ <summary>
+ Verifies that a property has been set on the mock, regarless of its value.
+ </summary>
+ <example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed);
+ </code>
+ </example>
+ <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
+ <param name="expression">Expression to verify.</param>
+ <param name="mock">The mock instance.</param>
+ <typeparam name="T">Mocked type.</typeparam>
+ <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.</typeparam>
+ </member>
+ <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.String)">
+ <summary>
+ Verifies that a property has been set on the mock, specifying a failure
+ error message.
+ </summary>
+ <example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed);
+ </code>
+ </example>
+ <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
+ <param name="expression">Expression to verify.</param>
+ <param name="failMessage">Message to show if verification fails.</param>
+ <param name="mock">The mock instance.</param>
+ <typeparam name="T">Mocked type.</typeparam>
+ <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.</typeparam>
+ </member>
+ <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},Moq.Times)">
+ <summary>
+ Verifies that a property has been set on the mock, regardless
+ of the value but only the specified number of times.
+ </summary>
+ <example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed);
+ </code>
+ </example>
+ <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="mock">The mock instance.</param>
+ <typeparam name="T">Mocked type.</typeparam>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <param name="expression">Expression to verify.</param>
+ <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.</typeparam>
+ </member>
+ <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},Moq.Times,System.String)">
+ <summary>
+ Verifies that a property has been set on the mock, regardless
+ of the value but only the specified number of times, and specifying a failure
+ error message.
+ </summary>
+ <example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed);
+ </code>
+ </example>
+ <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="mock">The mock instance.</param>
+ <typeparam name="T">Mocked type.</typeparam>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <param name="failMessage">Message to show if verification fails.</param>
+ <param name="expression">Expression to verify.</param>
+ <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.</typeparam>
+ </member>
+ <member name="T:Moq.SequenceExtensions">
+ <summary>
+ Helper for sequencing return values in the same method.
+ </summary>
+ </member>
+ <member name="M:Moq.SequenceExtensions.SetupSequence``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
+ <summary>
+ Return a sequence of values, once per call.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.ToLambda(System.Linq.Expressions.Expression)">
+ <summary>
+ Casts the expression to a lambda expression, removing
+ a cast if there's any.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.ToMethodCall(System.Linq.Expressions.LambdaExpression)">
+ <summary>
+ Casts the body of the lambda expression to a <see cref="T:System.Linq.Expressions.MethodCallExpression"/>.
+ </summary>
+ <exception cref="T:System.ArgumentException">If the body is not a method call.</exception>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.ToPropertyInfo(System.Linq.Expressions.LambdaExpression)">
+ <summary>
+ Converts the body of the lambda expression into the <see cref="T:System.Reflection.PropertyInfo"/> referenced by it.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.IsProperty(System.Linq.Expressions.LambdaExpression)">
+ <summary>
+ Checks whether the body of the lambda expression is a property access.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.IsProperty(System.Linq.Expressions.Expression)">
+ <summary>
+ Checks whether the expression is a property access.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.IsPropertyIndexer(System.Linq.Expressions.LambdaExpression)">
+ <summary>
+ Checks whether the body of the lambda expression is a property indexer, which is true
+ when the expression is an <see cref="T:System.Linq.Expressions.MethodCallExpression"/> whose
+ <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> has <see cref="P:System.Reflection.MethodBase.IsSpecialName"/>
+ equal to <see langword="true"/>.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.IsPropertyIndexer(System.Linq.Expressions.Expression)">
+ <summary>
+ Checks whether the expression is a property indexer, which is true
+ when the expression is an <see cref="T:System.Linq.Expressions.MethodCallExpression"/> whose
+ <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> has <see cref="P:System.Reflection.MethodBase.IsSpecialName"/>
+ equal to <see langword="true"/>.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.CastTo``1(System.Linq.Expressions.Expression)">
+ <summary>
+ Creates an expression that casts the given expression to the <typeparamref name="T"/>
+ type.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.ToStringFixed(System.Linq.Expressions.Expression)">
+ <devdoc>
+ TODO: remove this code when https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=331583
+ is fixed.
+ </devdoc>
+ </member>
+ <member name="T:Moq.Evaluator">
+ <summary>
+ Provides partial evaluation of subtrees, whenever they can be evaluated locally.
+ </summary>
+ <author>Matt Warren: http://blogs.msdn.com/mattwar</author>
+ <contributor>Documented by InSTEDD: http://www.instedd.org</contributor>
+ </member>
+ <member name="M:Moq.Evaluator.PartialEval(System.Linq.Expressions.Expression,System.Func{System.Linq.Expressions.Expression,System.Boolean})">
+ <summary>
+ Performs evaluation and replacement of independent sub-trees
+ </summary>
+ <param name="expression">The root of the expression tree.</param>
+ <param name="fnCanBeEvaluated">A function that decides whether a given expression
+ node can be part of the local function.</param>
+ <returns>A new tree with sub-trees evaluated and replaced.</returns>
+ </member>
+ <member name="M:Moq.Evaluator.PartialEval(System.Linq.Expressions.Expression)">
+ <summary>
+ Performs evaluation and replacement of independent sub-trees
+ </summary>
+ <param name="expression">The root of the expression tree.</param>
+ <returns>A new tree with sub-trees evaluated and replaced.</returns>
+ </member>
+ <member name="T:Moq.Evaluator.SubtreeEvaluator">
+ <summary>
+ Evaluates and replaces sub-trees when first candidate is reached (top-down)
+ </summary>
+ </member>
+ <member name="T:Moq.Evaluator.Nominator">
+ <summary>
+ Performs bottom-up analysis to determine which nodes can possibly
+ be part of an evaluated sub-tree.
+ </summary>
+ </member>
+ <member name="M:Moq.Guard.NotNull``1(System.Linq.Expressions.Expression{System.Func{``0}},``0)">
+ <summary>
+ Ensures the given <paramref name="value"/> is not null.
+ Throws <see cref="T:System.ArgumentNullException"/> otherwise.
+ </summary>
+ </member>
+ <member name="M:Moq.Guard.NotNullOrEmpty(System.Linq.Expressions.Expression{System.Func{System.String}},System.String)">
+ <summary>
+ Ensures the given string <paramref name="value"/> is not null or empty.
+ Throws <see cref="T:System.ArgumentNullException"/> in the first case, or
+ <see cref="T:System.ArgumentException"/> in the latter.
+ </summary>
+ </member>
+ <member name="M:Moq.Guard.NotOutOfRangeInclusive``1(System.Linq.Expressions.Expression{System.Func{``0}},``0,``0,``0)">
+ <summary>
+ Checks an argument to ensure it is in the specified range including the edges.
+ </summary>
+ <typeparam name="T">Type of the argument to check, it must be an <see cref="T:System.IComparable"/> type.
+ </typeparam>
+ <param name="reference">The expression containing the name of the argument.</param>
+ <param name="value">The argument value to check.</param>
+ <param name="from">The minimun allowed value for the argument.</param>
+ <param name="to">The maximun allowed value for the argument.</param>
+ </member>
+ <member name="M:Moq.Guard.NotOutOfRangeExclusive``1(System.Linq.Expressions.Expression{System.Func{``0}},``0,``0,``0)">
+ <summary>
+ Checks an argument to ensure it is in the specified range excluding the edges.
+ </summary>
+ <typeparam name="T">Type of the argument to check, it must be an <see cref="T:System.IComparable"/> type.
+ </typeparam>
+ <param name="reference">The expression containing the name of the argument.</param>
+ <param name="value">The argument value to check.</param>
+ <param name="from">The minimun allowed value for the argument.</param>
+ <param name="to">The maximun allowed value for the argument.</param>
+ </member>
+ <member name="T:Moq.IMocked`1">
+ <summary>
+ Implemented by all generated mock object instances.
+ </summary>
+ </member>
+ <member name="T:Moq.IMocked">
+ <summary>
+ Implemented by all generated mock object instances.
+ </summary>
+ </member>
+ <member name="P:Moq.IMocked.Mock">
+ <summary>
+ Reference the Mock that contains this as the <c>mock.Object</c> value.
+ </summary>
+ </member>
+ <member name="P:Moq.IMocked`1.Mock">
+ <summary>
+ Reference the Mock that contains this as the <c>mock.Object</c> value.
+ </summary>
+ </member>
+ <member name="T:Moq.Interceptor">
+ <summary>
+ Implements the actual interception and method invocation for
+ all mocks.
+ </summary>
+ </member>
+ <member name="M:Moq.Interceptor.GetEventFromName(System.String)">
+ <summary>
+ Get an eventInfo for a given event name. Search type ancestors depth first if necessary.
+ </summary>
+ <param name="eventName">Name of the event, with the set_ or get_ prefix already removed</param>
+ </member>
+ <member name="M:Moq.Interceptor.GetAncestorTypes(System.Type)">
+ <summary>
+ Given a type return all of its ancestors, both types and interfaces.
+ </summary>
+ <param name="initialType">The type to find immediate ancestors of</param>
+ </member>
+ <member name="T:Moq.Language.Flow.ISetupSetter`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.ICallbackSetter`1">
+ <summary>
+ Defines the <c>Callback</c> verb for property setter setups.
+ </summary>
+ <typeparam name="TProperty">Type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Language.ICallbackSetter`1.Callback(System.Action{`0})">
+ <summary>
+ Specifies a callback to invoke when the property is set that receives the
+ property value being set.
+ </summary>
+ <param name="action">Callback method to invoke.</param>
+ <example>
+ Invokes the given callback with the property value being set.
+ <code>
+ mock.SetupSet(x => x.Suspended)
+ .Callback((bool state) => Console.WriteLine(state));
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.It">
+ <summary>
+ Allows the specification of a matching condition for an
+ argument in a method invocation, rather than a specific
+ argument value. "It" refers to the argument being matched.
+ </summary><remarks>
+ This class allows the setup to match a method invocation
+ with an arbitrary value, with a value in a specified range, or
+ even one that matches a given predicate.
+ </remarks>
+ </member>
+ <member name="M:Moq.It.IsAny``1">
+ <summary>
+ Matches any value of the given <typeparamref name="TValue"/> type.
+ </summary><remarks>
+ Typically used when the actual argument value for a method
+ call is not relevant.
+ </remarks><example>
+ <code>
+ // Throws an exception for a call to Remove with any string value.
+ mock.Setup(x => x.Remove(It.IsAny<string>())).Throws(new InvalidOperationException());
+ </code>
+ </example><typeparam name="TValue">Type of the value.</typeparam>
+ </member>
+ <member name="M:Moq.It.Is``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Matches any value that satisfies the given predicate.
+ </summary><typeparam name="TValue">Type of the argument to check.</typeparam><param name="match">The predicate used to match the method argument.</param><remarks>
+ Allows the specification of a predicate to perform matching
+ of method call arguments.
+ </remarks><example>
+ This example shows how to return the value <c>1</c> whenever the argument to the
+ <c>Do</c> method is an even number.
+ <code>
+ mock.Setup(x => x.Do(It.Is<int>(i => i % 2 == 0)))
+ .Returns(1);
+ </code>
+ This example shows how to throw an exception if the argument to the
+ method is a negative number:
+ <code>
+ mock.Setup(x => x.GetUser(It.Is<int>(i => i < 0)))
+ .Throws(new ArgumentException());
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.It.IsInRange``1(``0,``0,Moq.Range)">
+ <summary>
+ Matches any value that is in the range specified.
+ </summary><typeparam name="TValue">Type of the argument to check.</typeparam><param name="from">The lower bound of the range.</param><param name="to">The upper bound of the range.</param><param name="rangeKind">
+ The kind of range. See <see cref="T:Moq.Range"/>.
+ </param><example>
+ The following example shows how to expect a method call
+ with an integer argument within the 0..100 range.
+ <code>
+ mock.Setup(x => x.HasInventory(
+ It.IsAny<string>(),
+ It.IsInRange(0, 100, Range.Inclusive)))
+ .Returns(false);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.It.IsRegex(System.String)">
+ <summary>
+ Matches a string argument if it matches the given regular expression pattern.
+ </summary><param name="regex">The pattern to use to match the string argument value.</param><example>
+ The following example shows how to expect a call to a method where the
+ string argument matches the given regular expression:
+ <code>
+ mock.Setup(x => x.Check(It.IsRegex("[a-z]+"))).Returns(1);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.It.IsRegex(System.String,System.Text.RegularExpressions.RegexOptions)">
+ <summary>
+ Matches a string argument if it matches the given regular expression pattern.
+ </summary><param name="regex">The pattern to use to match the string argument value.</param><param name="options">The options used to interpret the pattern.</param><example>
+ The following example shows how to expect a call to a method where the
+ string argument matches the given regular expression, in a case insensitive way:
+ <code>
+ mock.Setup(x => x.Check(It.IsRegex("[a-z]+", RegexOptions.IgnoreCase))).Returns(1);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Matchers.MatcherAttributeMatcher">
+ <summary>
+ Matcher to treat static functions as matchers.
+
+ mock.Setup(x => x.StringMethod(A.MagicString()));
+
+ public static class A
+ {
+ [Matcher]
+ public static string MagicString() { return null; }
+ public static bool MagicString(string arg)
+ {
+ return arg == "magic";
+ }
+ }
+
+ Will succeed if: mock.Object.StringMethod("magic");
+ and fail with any other call.
+ </summary>
+ </member>
+ <member name="T:Moq.MockBehavior">
+ <summary>
+ Options to customize the behavior of the mock.
+ </summary>
+ </member>
+ <member name="F:Moq.MockBehavior.Strict">
+ <summary>
+ Causes the mock to always throw
+ an exception for invocations that don't have a
+ corresponding setup.
+ </summary>
+ </member>
+ <member name="F:Moq.MockBehavior.Loose">
+ <summary>
+ Will never throw exceptions, returning default
+ values when necessary (null for reference types,
+ zero for value types or empty enumerables and arrays).
+ </summary>
+ </member>
+ <member name="F:Moq.MockBehavior.Default">
+ <summary>
+ Default mock behavior, which equals <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary>
+ </member>
+ <member name="T:Moq.MockException">
+ <summary>
+ Exception thrown by mocks when setups are not matched,
+ the mock is not properly setup, etc.
+ </summary>
+ <remarks>
+ A distinct exception type is provided so that exceptions
+ thrown by the mock can be differentiated in tests that
+ expect other exceptions to be thrown (i.e. ArgumentException).
+ <para>
+ Richer exception hierarchy/types are not provided as
+ tests typically should <b>not</b> catch or expect exceptions
+ from the mocks. These are typically the result of changes
+ in the tested class or its collaborators implementation, and
+ result in fixes in the mock setup so that they dissapear and
+ allow the test to pass.
+ </para>
+ </remarks>
+ </member>
+ <member name="M:Moq.MockException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Supports the serialization infrastructure.
+ </summary>
+ <param name="info">Serialization information.</param>
+ <param name="context">Streaming context.</param>
+ </member>
+ <member name="M:Moq.MockException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Supports the serialization infrastructure.
+ </summary>
+ <param name="info">Serialization information.</param>
+ <param name="context">Streaming context.</param>
+ </member>
+ <member name="T:Moq.MockException.ExceptionReason">
+ <summary>
+ Made internal as it's of no use for
+ consumers, but it's important for
+ our own tests.
+ </summary>
+ </member>
+ <member name="T:Moq.MockVerificationException">
+ <devdoc>
+ Used by the mock factory to accumulate verification
+ failures.
+ </devdoc>
+ </member>
+ <member name="M:Moq.MockVerificationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Supports the serialization infrastructure.
+ </summary>
+ </member>
+ <member name="T:Moq.Properties.Resources">
+ <summary>
+ A strongly-typed resource class, for looking up localized strings, etc.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ResourceManager">
+ <summary>
+ Returns the cached ResourceManager instance used by this class.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.Culture">
+ <summary>
+ Overrides the current thread's CurrentUICulture property for all
+ resource lookups using this strongly typed resource class.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.AlreadyInitialized">
+ <summary>
+ Looks up a localized string similar to Mock type has already been initialized by accessing its Object property. Adding interfaces must be done before that..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ArgumentCannotBeEmpty">
+ <summary>
+ Looks up a localized string similar to Value cannot be an empty string..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.AsMustBeInterface">
+ <summary>
+ Looks up a localized string similar to Can only add interfaces to the mock..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.CantSetReturnValueForVoid">
+ <summary>
+ Looks up a localized string similar to Can't set return value for void method {0}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ConstructorArgsForInterface">
+ <summary>
+ Looks up a localized string similar to Constructor arguments cannot be passed for interface mocks..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ConstructorNotFound">
+ <summary>
+ Looks up a localized string similar to A matching constructor for the given arguments was not found on the mocked type..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.EventNofFound">
+ <summary>
+ Looks up a localized string similar to Could not locate event for attach or detach method {0}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.FieldsNotSupported">
+ <summary>
+ Looks up a localized string similar to Expression {0} involves a field access, which is not supported. Use properties instead..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.InvalidMockClass">
+ <summary>
+ Looks up a localized string similar to Type to mock must be an interface or an abstract or non-sealed class. .
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.InvalidMockGetType">
+ <summary>
+ Looks up a localized string similar to Cannot retrieve a mock with the given object type {0} as it's not the main type of the mock or any of its additional interfaces.
+ Please cast the argument to one of the supported types: {1}.
+ Remember that there's no generics covariance in the CLR, so your object must be one of these types in order for the call to succeed..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.LinqBinaryOperatorNotSupported">
+ <summary>
+ Looks up a localized string similar to The equals ("==" or "=" in VB) and the conditional 'and' ("&&" or "AndAlso" in VB) operators are the only ones supported in the query specification expression. Unsupported expression: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.LinqMethodNotSupported">
+ <summary>
+ Looks up a localized string similar to LINQ method '{0}' not supported..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.LinqMethodNotVirtual">
+ <summary>
+ Looks up a localized string similar to Expression contains a call to a method which is not virtual (overridable in VB) or abstract. Unsupported expression: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MemberMissing">
+ <summary>
+ Looks up a localized string similar to Member {0}.{1} does not exist..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MethodIsPublic">
+ <summary>
+ Looks up a localized string similar to Method {0}.{1} is public. Use strong-typed Expect overload instead:
+ mock.Setup(x => x.{1}());
+ .
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MockExceptionMessage">
+ <summary>
+ Looks up a localized string similar to {0} invocation failed with mock behavior {1}.
+ {2}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MoreThanNCalls">
+ <summary>
+ Looks up a localized string similar to Expected only {0} calls to {1}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MoreThanOneCall">
+ <summary>
+ Looks up a localized string similar to Expected only one call to {0}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsAtLeast">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock at least {2} times, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsAtLeastOnce">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock at least once, but was never performed: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsAtMost">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock at most {3} times, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsAtMostOnce">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock at most once, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsBetweenExclusive">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock between {2} and {3} times (Exclusive), but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsBetweenInclusive">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock between {2} and {3} times (Inclusive), but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsExactly">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock exactly {2} times, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsNever">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock should never have been performed, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsOnce">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock once, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoSetup">
+ <summary>
+ Looks up a localized string similar to All invocations on the mock must have a corresponding setup..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ObjectInstanceNotMock">
+ <summary>
+ Looks up a localized string similar to Object instance was not created by Moq..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.OutExpressionMustBeConstantValue">
+ <summary>
+ Looks up a localized string similar to Out expression must evaluate to a constant value..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertyGetNotFound">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} does not have a getter..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertyMissing">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} does not exist..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertyNotReadable">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} is write-only..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertyNotWritable">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} is read-only..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertySetNotFound">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} does not have a setter..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.RaisedUnassociatedEvent">
+ <summary>
+ Looks up a localized string similar to Cannot raise a mocked event unless it has been associated (attached) to a concrete event in a mocked object..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.RefExpressionMustBeConstantValue">
+ <summary>
+ Looks up a localized string similar to Ref expression must evaluate to a constant value..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ReturnValueRequired">
+ <summary>
+ Looks up a localized string similar to Invocation needs to return a value and therefore must have a corresponding setup that provides it..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupLambda">
+ <summary>
+ Looks up a localized string similar to A lambda expression is expected as the argument to It.Is<T>..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupNever">
+ <summary>
+ Looks up a localized string similar to Invocation {0} should not have been made..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupNotMethod">
+ <summary>
+ Looks up a localized string similar to Expression is not a method invocation: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupNotProperty">
+ <summary>
+ Looks up a localized string similar to Expression is not a property access: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupNotSetter">
+ <summary>
+ Looks up a localized string similar to Expression is not a property setter invocation..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupOnNonMemberMethod">
+ <summary>
+ Looks up a localized string similar to Expression references a method that does not belong to the mocked object: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupOnNonOverridableMember">
+ <summary>
+ Looks up a localized string similar to Invalid setup on a non-virtual (overridable in VB) member: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.TypeNotImplementInterface">
+ <summary>
+ Looks up a localized string similar to Type {0} does not implement required interface {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.TypeNotInheritFromType">
+ <summary>
+ Looks up a localized string similar to Type {0} does not from required type {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnexpectedPublicProperty">
+ <summary>
+ Looks up a localized string similar to To specify a setup for public property {0}.{1}, use the typed overloads, such as:
+ mock.Setup(x => x.{1}).Returns(value);
+ mock.SetupGet(x => x.{1}).Returns(value); //equivalent to previous one
+ mock.SetupSet(x => x.{1}).Callback(callbackDelegate);
+ .
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedExpression">
+ <summary>
+ Looks up a localized string similar to Unsupported expression: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedIntermediateExpression">
+ <summary>
+ Looks up a localized string similar to Only property accesses are supported in intermediate invocations on a setup. Unsupported expression {0}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedIntermediateType">
+ <summary>
+ Looks up a localized string similar to Expression contains intermediate property access {0}.{1} which is of type {2} and cannot be mocked. Unsupported expression {3}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedMatcherParamsForSetter">
+ <summary>
+ Looks up a localized string similar to Setter expression cannot use argument matchers that receive parameters..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedMember">
+ <summary>
+ Looks up a localized string similar to Member {0} is not supported for protected mocking..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedNonStaticMatcherForSetter">
+ <summary>
+ Looks up a localized string similar to Setter expression can only use static custom matchers..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.VerficationFailed">
+ <summary>
+ Looks up a localized string similar to The following setups were not matched:
+ {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.VerifyOnNonVirtualMember">
+ <summary>
+ Looks up a localized string similar to Invalid verify on a non-virtual (overridable in VB) member: {0}.
+ </summary>
+ </member>
+ <member name="T:Moq.Protected.IProtectedMock`1">
+ <summary>
+ Allows setups to be specified for protected members by using their
+ name as a string, rather than strong-typing them which is not possible
+ due to their visibility.
+ </summary>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.Setup(System.String,System.Object[])">
+ <summary>
+ Specifies a setup for a void method invocation with the given
+ <paramref name="voidMethodName"/>, optionally specifying arguments for the method call.
+ </summary>
+ <param name="voidMethodName">The name of the void method to be invoked.</param>
+ <param name="args">The optional arguments for the invocation. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.Setup``1(System.String,System.Object[])">
+ <summary>
+ Specifies a setup for an invocation on a property or a non void method with the given
+ <paramref name="methodOrPropertyName"/>, optionally specifying arguments for the method call.
+ </summary>
+ <param name="methodOrPropertyName">The name of the method or property to be invoked.</param>
+ <param name="args">The optional arguments for the invocation. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ <typeparam name="TResult">The return type of the method or property.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.SetupGet``1(System.String)">
+ <summary>
+ Specifies a setup for an invocation on a property getter with the given
+ <paramref name="propertyName"/>.
+ </summary>
+ <param name="propertyName">The name of the property.</param>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.SetupSet``1(System.String,System.Object)">
+ <summary>
+ Specifies a setup for an invocation on a property setter with the given
+ <paramref name="propertyName"/>.
+ </summary>
+ <param name="propertyName">The name of the property.</param>
+ <param name="value">The property value. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.Verify(System.String,Moq.Times,System.Object[])">
+ <summary>
+ Specifies a verify for a void method with the given <paramref name="methodName"/>,
+ optionally specifying arguments for the method call. Use in conjuntion with the default
+ <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="methodName">The name of the void method to be verified.</param>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <param name="args">The optional arguments for the invocation. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.Verify``1(System.String,Moq.Times,System.Object[])">
+ <summary>
+ Specifies a verify for an invocation on a property or a non void method with the given
+ <paramref name="methodName"/>, optionally specifying arguments for the method call.
+ </summary>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="methodName">The name of the method or property to be invoked.</param>
+ <param name="args">The optional arguments for the invocation. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <typeparam name="TResult">The type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.VerifyGet``1(System.String,Moq.Times)">
+ <summary>
+ Specifies a verify for an invocation on a property getter with the given
+ <paramref name="propertyName"/>.
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ </summary>
+ <param name="propertyName">The name of the property.</param>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.VerifySet``1(System.String,Moq.Times,System.Object)">
+ <summary>
+ Specifies a setup for an invocation on a property setter with the given
+ <paramref name="propertyName"/>.
+ </summary>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="propertyName">The name of the property.</param>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <param name="value">The property value.</param>
+ <typeparam name="TProperty">The type of the property. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</typeparam>
+ </member>
+ <member name="T:Moq.Protected.ItExpr">
+ <summary>
+ Allows the specification of a matching condition for an
+ argument in a protected member setup, rather than a specific
+ argument value. "ItExpr" refers to the argument being matched.
+ </summary>
+ <remarks>
+ <para>Use this variant of argument matching instead of
+ <see cref="T:Moq.It"/> for protected setups.</para>
+ This class allows the setup to match a method invocation
+ with an arbitrary value, with a value in a specified range, or
+ even one that matches a given predicate, or null.
+ </remarks>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsNull``1">
+ <summary>
+ Matches a null value of the given <typeparamref name="TValue"/> type.
+ </summary>
+ <remarks>
+ Required for protected mocks as the null value cannot be used
+ directly as it prevents proper method overload selection.
+ </remarks>
+ <example>
+ <code>
+ // Throws an exception for a call to Remove with a null string value.
+ mock.Protected()
+ .Setup("Remove", ItExpr.IsNull<string>())
+ .Throws(new InvalidOperationException());
+ </code>
+ </example>
+ <typeparam name="TValue">Type of the value.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsAny``1">
+ <summary>
+ Matches any value of the given <typeparamref name="TValue"/> type.
+ </summary>
+ <remarks>
+ Typically used when the actual argument value for a method
+ call is not relevant.
+ </remarks>
+ <example>
+ <code>
+ // Throws an exception for a call to Remove with any string value.
+ mock.Protected()
+ .Setup("Remove", ItExpr.IsAny<string>())
+ .Throws(new InvalidOperationException());
+ </code>
+ </example>
+ <typeparam name="TValue">Type of the value.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.Is``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Matches any value that satisfies the given predicate.
+ </summary>
+ <typeparam name="TValue">Type of the argument to check.</typeparam>
+ <param name="match">The predicate used to match the method argument.</param>
+ <remarks>
+ Allows the specification of a predicate to perform matching
+ of method call arguments.
+ </remarks>
+ <example>
+ This example shows how to return the value <c>1</c> whenever the argument to the
+ <c>Do</c> method is an even number.
+ <code>
+ mock.Protected()
+ .Setup("Do", ItExpr.Is<int>(i => i % 2 == 0))
+ .Returns(1);
+ </code>
+ This example shows how to throw an exception if the argument to the
+ method is a negative number:
+ <code>
+ mock.Protected()
+ .Setup("GetUser", ItExpr.Is<int>(i => i < 0))
+ .Throws(new ArgumentException());
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsInRange``1(``0,``0,Moq.Range)">
+ <summary>
+ Matches any value that is in the range specified.
+ </summary>
+ <typeparam name="TValue">Type of the argument to check.</typeparam>
+ <param name="from">The lower bound of the range.</param>
+ <param name="to">The upper bound of the range.</param>
+ <param name="rangeKind">The kind of range. See <see cref="T:Moq.Range"/>.</param>
+ <example>
+ The following example shows how to expect a method call
+ with an integer argument within the 0..100 range.
+ <code>
+ mock.Protected()
+ .Setup("HasInventory",
+ ItExpr.IsAny<string>(),
+ ItExpr.IsInRange(0, 100, Range.Inclusive))
+ .Returns(false);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsRegex(System.String)">
+ <summary>
+ Matches a string argument if it matches the given regular expression pattern.
+ </summary>
+ <param name="regex">The pattern to use to match the string argument value.</param>
+ <example>
+ The following example shows how to expect a call to a method where the
+ string argument matches the given regular expression:
+ <code>
+ mock.Protected()
+ .Setup("Check", ItExpr.IsRegex("[a-z]+"))
+ .Returns(1);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsRegex(System.String,System.Text.RegularExpressions.RegexOptions)">
+ <summary>
+ Matches a string argument if it matches the given regular expression pattern.
+ </summary>
+ <param name="regex">The pattern to use to match the string argument value.</param>
+ <param name="options">The options used to interpret the pattern.</param>
+ <example>
+ The following example shows how to expect a call to a method where the
+ string argument matches the given regular expression, in a case insensitive way:
+ <code>
+ mock.Protected()
+ .Setup("Check", ItExpr.IsRegex("[a-z]+", RegexOptions.IgnoreCase))
+ .Returns(1);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Protected.ProtectedExtension">
+ <summary>
+ Enables the <c>Protected()</c> method on <see cref="T:Moq.Mock`1"/>,
+ allowing setups to be set for protected members by using their
+ name as a string, rather than strong-typing them which is not possible
+ due to their visibility.
+ </summary>
+ </member>
+ <member name="M:Moq.Protected.ProtectedExtension.Protected``1(Moq.Mock{``0})">
+ <summary>
+ Enable protected setups for the mock.
+ </summary>
+ <typeparam name="T">Mocked object type. Typically omitted as it can be inferred from the mock instance.</typeparam>
+ <param name="mock">The mock to set the protected setups on.</param>
+ </member>
+ <member name="T:ThisAssembly">
+ <group name="overview" title="Overview" order="0" />
+ <group name="setups" title="Specifying setups" order="1" />
+ <group name="returns" title="Returning values from members" order="2" />
+ <group name="verification" title="Verifying setups" order="3" />
+ <group name="advanced" title="Advanced scenarios" order="99" />
+ <group name="factory" title="Using MockFactory for consistency across mocks" order="4" />
+ </member>
+ <member name="T:Moq.Range">
+ <summary>
+ Kind of range to use in a filter specified through
+ <see cref="M:Moq.It.IsInRange``1(``0,``0,Moq.Range)"/>.
+ </summary>
+ </member>
+ <member name="F:Moq.Range.Inclusive">
+ <summary>
+ The range includes the <c>to</c> and
+ <c>from</c> values.
+ </summary>
+ </member>
+ <member name="F:Moq.Range.Exclusive">
+ <summary>
+ The range does not include the <c>to</c> and
+ <c>from</c> values.
+ </summary>
+ </member>
+ <member name="T:Moq.DefaultValue">
+ <summary>
+ Determines the way default values are generated
+ calculated for loose mocks.
+ </summary>
+ </member>
+ <member name="F:Moq.DefaultValue.Empty">
+ <summary>
+ Default behavior, which generates empty values for
+ value types (i.e. default(int)), empty array and
+ enumerables, and nulls for all other reference types.
+ </summary>
+ </member>
+ <member name="F:Moq.DefaultValue.Mock">
+ <summary>
+ Whenever the default value generated by <see cref="F:Moq.DefaultValue.Empty"/>
+ is null, replaces this value with a mock (if the type
+ can be mocked).
+ </summary>
+ <remarks>
+ For sealed classes, a null value will be generated.
+ </remarks>
+ </member>
+ <member name="T:Moq.Linq.MockQueryable`1">
+ <summary>
+ A default implementation of IQueryable for use with QueryProvider
+ </summary>
+ </member>
+ <member name="M:Moq.Linq.MockQueryable`1.#ctor(System.Linq.Expressions.MethodCallExpression)">
+ <summary>
+ The <paramref name="underlyingCreateMocks"/> is a
+ static method that returns an IQueryable of Mocks of T which is used to
+ apply the linq specification to.
+ </summary>
+ </member>
+ <member name="T:Moq.Match">
+ <summary>
+ Allows creation custom value matchers that can be used on setups and verification,
+ completely replacing the built-in <see cref="T:Moq.It"/> class with your own argument
+ matching rules.
+ </summary><remarks>
+ See also <see cref="T:Moq.Match`1"/>.
+ </remarks>
+ </member>
+ <member name="M:Moq.Match.Matcher``1">
+ <devdoc>
+ Provided for the sole purpose of rendering the delegate passed to the
+ matcher constructor if no friendly render lambda is provided.
+ </devdoc>
+ </member>
+ <member name="M:Moq.Match.Create``1(System.Predicate{``0})">
+ <summary>
+ Initializes the match with the condition that
+ will be checked in order to match invocation
+ values.
+ </summary><param name="condition">The condition to match against actual values.</param><remarks>
+ <seealso cref="T:Moq.Match`1"/>
+ </remarks>
+ </member>
+ <member name="M:Moq.Match.Create``1(System.Predicate{``0},System.Linq.Expressions.Expression{System.Func{``0}})">
+ <!-- No matching elements were found for the following include tag --><include file="Match.xdoc" path="docs/doc[@for="Match.Create{T}(condition,renderExpression"]/*"/>
+ </member>
+ <member name="M:Moq.Match.SetLastMatch``1(Moq.Match{``0})">
+ <devdoc>
+ This method is used to set an expression as the last matcher invoked,
+ which is used in the SetupSet to allow matchers in the prop = value
+ delegate expression. This delegate is executed in "fluent" mode in
+ order to capture the value being set, and construct the corresponding
+ methodcall.
+ This is also used in the MatcherFactory for each argument expression.
+ This method ensures that when we execute the delegate, we
+ also track the matcher that was invoked, so that when we create the
+ methodcall we build the expression using it, rather than the null/default
+ value returned from the actual invocation.
+ </devdoc>
+ </member>
+ <member name="T:Moq.Match`1">
+ <summary>
+ Allows creation custom value matchers that can be used on setups and verification,
+ completely replacing the built-in <see cref="T:Moq.It"/> class with your own argument
+ matching rules.
+ </summary><typeparam name="T">Type of the value to match.</typeparam><remarks>
+ The argument matching is used to determine whether a concrete
+ invocation in the mock matches a given setup. This
+ matching mechanism is fully extensible.
+ </remarks><example>
+ Creating a custom matcher is straightforward. You just need to create a method
+ that returns a value from a call to <see cref="M:Moq.Match.Create``1(System.Predicate{``0})"/> with
+ your matching condition and optional friendly render expression:
+ <code>
+ [Matcher]
+ public Order IsBigOrder()
+ {
+ return Match<Order>.Create(
+ o => o.GrandTotal >= 5000,
+ /* a friendly expression to render on failures */
+ () => IsBigOrder());
+ }
+ </code>
+ This method can be used in any mock setup invocation:
+ <code>
+ mock.Setup(m => m.Submit(IsBigOrder()).Throws<UnauthorizedAccessException>();
+ </code>
+ At runtime, Moq knows that the return value was a matcher (note that the method MUST be
+ annotated with the [Matcher] attribute in order to determine this) and
+ evaluates your predicate with the actual value passed into your predicate.
+ <para>
+ Another example might be a case where you want to match a lists of orders
+ that contains a particular one. You might create matcher like the following:
+ </para>
+ <code>
+ public static class Orders
+ {
+ [Matcher]
+ public static IEnumerable<Order> Contains(Order order)
+ {
+ return Match<IEnumerable<Order>>.Create(orders => orders.Contains(order));
+ }
+ }
+ </code>
+ Now we can invoke this static method instead of an argument in an
+ invocation:
+ <code>
+ var order = new Order { ... };
+ var mock = new Mock<IRepository<Order>>();
+
+ mock.Setup(x => x.Save(Orders.Contains(order)))
+ .Throws<ArgumentException>();
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.FluentMockContext">
+ <summary>
+ Tracks the current mock and interception context.
+ </summary>
+ </member>
+ <member name="P:Moq.FluentMockContext.IsActive">
+ <summary>
+ Having an active fluent mock context means that the invocation
+ is being performed in "trial" mode, just to gather the
+ target method and arguments that need to be matched later
+ when the actual invocation is made.
+ </summary>
+ </member>
+ <member name="T:Moq.MockDefaultValueProvider">
+ <summary>
+ A <see cref="T:Moq.IDefaultValueProvider"/> that returns an empty default value
+ for non-mockeable types, and mocks for all other types (interfaces and
+ non-sealed classes) that can be mocked.
+ </summary>
+ </member>
+ <member name="T:Moq.Mocks">
+ <summary>
+ Allows querying the universe of mocks for those that behave
+ according to the LINQ query specification.
+ </summary>
+ <devdoc>
+ This entry-point into Linq to Mocks is the only one in the root Moq
+ namespace to ease discovery. But to get all the mocking extension
+ methods on Object, a using of Moq.Linq must be done, so that the
+ polluting of the intellisense for all objects is an explicit opt-in.
+ </devdoc>
+ </member>
+ <member name="M:Moq.Mocks.Of``1">
+ <summary>
+ Access the universe of mocks of the given type, to retrieve those
+ that behave according to the LINQ query specification.
+ </summary>
+ <typeparam name="T">The type of the mocked object to query.</typeparam>
+ </member>
+ <member name="M:Moq.Mocks.Of``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Access the universe of mocks of the given type, to retrieve those
+ that behave according to the LINQ query specification.
+ </summary>
+ <param name="specification">The predicate with the setup expressions.</param>
+ <typeparam name="T">The type of the mocked object to query.</typeparam>
+ </member>
+ <member name="M:Moq.Mocks.OneOf``1">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.Mocks.OneOf``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <param name="specification">The predicate with the setup expressions.</param>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.Mocks.CreateMockQuery``1">
+ <summary>
+ Creates the mock query with the underlying queriable implementation.
+ </summary>
+ </member>
+ <member name="M:Moq.Mocks.CreateQueryable``1">
+ <summary>
+ Wraps the enumerator inside a queryable.
+ </summary>
+ </member>
+ <member name="M:Moq.Mocks.CreateMocks``1">
+ <summary>
+ Method that is turned into the actual call from .Query{T}, to
+ transform the queryable query into a normal enumerable query.
+ This method is never used directly by consumers.
+ </summary>
+ </member>
+ <member name="M:Moq.Mocks.SetPropery``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1)">
+ <summary>
+ Extension method used to support Linq-like setup properties that are not virtual but do have
+ a getter and a setter, thereby allowing the use of Linq to Mocks to quickly initialize Dtos too :)
+ </summary>
+ </member>
+ <member name="T:Moq.QueryableMockExtensions">
+ <summary>
+ Helper extensions that are used by the query translator.
+ </summary>
+ </member>
+ <member name="M:Moq.QueryableMockExtensions.FluentMock``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
+ <summary>
+ Retrieves a fluent mock from the given setup expression.
+ </summary>
+ </member>
+ <member name="T:Moq.Times">
+ <summary>
+ Defines the number of invocations allowed by a mocked method.
+ </summary>
+ </member>
+ <member name="M:Moq.Times.AtLeast(System.Int32)">
+ <summary>
+ Specifies that a mocked method should be invoked <paramref name="callCount"/> times as minimum.
+ </summary><param name="callCount">The minimun number of times.</param><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.AtLeastOnce">
+ <summary>
+ Specifies that a mocked method should be invoked one time as minimum.
+ </summary><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.AtMost(System.Int32)">
+ <summary>
+ Specifies that a mocked method should be invoked <paramref name="callCount"/> time as maximun.
+ </summary><param name="callCount">The maximun number of times.</param><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.AtMostOnce">
+ <summary>
+ Specifies that a mocked method should be invoked one time as maximun.
+ </summary><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Between(System.Int32,System.Int32,Moq.Range)">
+ <summary>
+ Specifies that a mocked method should be invoked between <paramref name="callCountFrom"/> and
+ <paramref name="callCountTo"/> times.
+ </summary><param name="callCountFrom">The minimun number of times.</param><param name="callCountTo">The maximun number of times.</param><param name="rangeKind">
+ The kind of range. See <see cref="T:Moq.Range"/>.
+ </param><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Exactly(System.Int32)">
+ <summary>
+ Specifies that a mocked method should be invoked exactly <paramref name="callCount"/> times.
+ </summary><param name="callCount">The times that a method or property can be called.</param><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Never">
+ <summary>
+ Specifies that a mocked method should not be invoked.
+ </summary><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Once">
+ <summary>
+ Specifies that a mocked method should be invoked exactly one time.
+ </summary><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Equals(System.Object)">
+ <summary>
+ Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
+ </summary><param name="obj">
+ The <see cref="T:System.Object"/> to compare with this instance.
+ </param><returns>
+ <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="M:Moq.Times.GetHashCode">
+ <summary>
+ Returns a hash code for this instance.
+ </summary><returns>
+ A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+ </returns>
+ </member>
+ <member name="M:Moq.Times.op_Equality(Moq.Times,Moq.Times)">
+ <summary>
+ Determines whether two specified <see cref="T:Moq.Times"/> objects have the same value.
+ </summary><param name="left">
+ The first <see cref="T:Moq.Times"/>.
+ </param><param name="right">
+ The second <see cref="T:Moq.Times"/>.
+ </param><returns>
+ <c>true</c> if the value of left is the same as the value of right; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="M:Moq.Times.op_Inequality(Moq.Times,Moq.Times)">
+ <summary>
+ Determines whether two specified <see cref="T:Moq.Times"/> objects have different values.
+ </summary><param name="left">
+ The first <see cref="T:Moq.Times"/>.
+ </param><param name="right">
+ The second <see cref="T:Moq.Times"/>.
+ </param><returns>
+ <c>true</c> if the value of left is different from the value of right; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ </members>
+</doc>
diff --git a/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.dll b/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.dll Binary files differnew file mode 100755 index 0000000..3a3e653 --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.dll diff --git a/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.pdb b/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.pdb Binary files differnew file mode 100755 index 0000000..03cca56 --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.pdb diff --git a/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.xml b/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.xml new file mode 100755 index 0000000..e0743a6 --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/lib/NET40/Moq.xml @@ -0,0 +1,5120 @@ +<?xml version="1.0"?>
+<doc>
+ <assembly>
+ <name>Moq</name>
+ </assembly>
+ <members>
+ <member name="T:Moq.Language.ISetupConditionResult`1">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.Setup(System.Linq.Expressions.Expression{System.Action{`0}})">
+ <summary>
+ The expectation will be considered only in the former condition.
+ </summary>
+ <param name="expression"></param>
+ <returns></returns>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.Setup``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ The expectation will be considered only in the former condition.
+ </summary>
+ <typeparam name="TResult"></typeparam>
+ <param name="expression"></param>
+ <returns></returns>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.SetupGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Setups the get.
+ </summary>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ <param name="expression">The expression.</param>
+ <returns></returns>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.SetupSet``1(System.Action{`0})">
+ <summary>
+ Setups the set.
+ </summary>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ <param name="setterExpression">The setter expression.</param>
+ <returns></returns>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.SetupSet(System.Action{`0})">
+ <summary>
+ Setups the set.
+ </summary>
+ <param name="setterExpression">The setter expression.</param>
+ <returns></returns>
+ </member>
+ <member name="T:Moq.Language.ICallback">
+ <summary>
+ Defines the <c>Callback</c> verb and overloads.
+ </summary>
+ </member>
+ <member name="T:Moq.IHideObjectMembers">
+ <summary>
+ Helper interface used to hide the base <see cref="T:System.Object"/>
+ members from the fluent API to make it much cleaner
+ in Visual Studio intellisense.
+ </summary>
+ </member>
+ <member name="M:Moq.IHideObjectMembers.GetType">
+ <summary/>
+ </member>
+ <member name="M:Moq.IHideObjectMembers.GetHashCode">
+ <summary/>
+ </member>
+ <member name="M:Moq.IHideObjectMembers.ToString">
+ <summary/>
+ </member>
+ <member name="M:Moq.IHideObjectMembers.Equals(System.Object)">
+ <summary/>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback(System.Action)">
+ <summary>
+ Specifies a callback to invoke when the method is called.
+ </summary>
+ <param name="action">The callback method to invoke.</param>
+ <example>
+ The following example specifies a callback to set a boolean
+ value that can be used later:
+ <code>
+ var called = false;
+ mock.Setup(x => x.Execute())
+ .Callback(() => called = true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``1(System.Action{``0})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T">The argument type of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <example>
+ Invokes the given callback with the concrete invocation argument value.
+ <para>
+ Notice how the specific string argument is retrieved by simply declaring
+ it as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(It.IsAny<string>()))
+ .Callback((string command) => Console.WriteLine(command));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``2(System.Action{``0,``1})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2) => Console.WriteLine(arg1 + arg2));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``3(System.Action{``0,``1,``2})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3) => Console.WriteLine(arg1 + arg2 + arg3));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``4(System.Action{``0,``1,``2,``3})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4) => Console.WriteLine(arg1 + arg2 + arg3 + arg4));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``5(System.Action{``0,``1,``2,``3,``4})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``6(System.Action{``0,``1,``2,``3,``4,``5})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``7(System.Action{``0,``1,``2,``3,``4,``5,``6})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``8(System.Action{``0,``1,``2,``3,``4,``5,``6,``7})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``9(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``10(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``11(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``12(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``13(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``14(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``15(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``16(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <typeparam name="T16">The type of the sixteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15, string arg16) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15 + arg16));
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.ICallback`2">
+ <summary>
+ Defines the <c>Callback</c> verb and overloads for callbacks on
+ setups that return a value.
+ </summary>
+ <typeparam name="TMock">Mocked type.</typeparam>
+ <typeparam name="TResult">Type of the return value of the setup.</typeparam>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback(System.Action)">
+ <summary>
+ Specifies a callback to invoke when the method is called.
+ </summary>
+ <param name="action">The callback method to invoke.</param>
+ <example>
+ The following example specifies a callback to set a boolean value that can be used later:
+ <code>
+ var called = false;
+ mock.Setup(x => x.Execute())
+ .Callback(() => called = true)
+ .Returns(true);
+ </code>
+ Note that in the case of value-returning methods, after the <c>Callback</c>
+ call you can still specify the return value.
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``1(System.Action{``0})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T">The type of the argument of the invoked method.</typeparam>
+ <param name="action">Callback method to invoke.</param>
+ <example>
+ Invokes the given callback with the concrete invocation argument value.
+ <para>
+ Notice how the specific string argument is retrieved by simply declaring
+ it as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(It.IsAny<string>()))
+ .Callback(command => Console.WriteLine(command))
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``2(System.Action{``0,``1})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2) => Console.WriteLine(arg1 + arg2));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``3(System.Action{``0,``1,``2})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3) => Console.WriteLine(arg1 + arg2 + arg3));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``4(System.Action{``0,``1,``2,``3})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4) => Console.WriteLine(arg1 + arg2 + arg3 + arg4));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``5(System.Action{``0,``1,``2,``3,``4})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``6(System.Action{``0,``1,``2,``3,``4,``5})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``7(System.Action{``0,``1,``2,``3,``4,``5,``6})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``8(System.Action{``0,``1,``2,``3,``4,``5,``6,``7})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``9(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``10(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``11(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``12(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``13(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``14(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``15(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``16(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <typeparam name="T16">The type of the sixteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15 + arg16));
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.IRaise`1">
+ <summary>
+ Defines the <c>Raises</c> verb.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)">
+ <summary>
+ Specifies the event that will be raised
+ when the setup is met.
+ </summary>
+ <param name="eventExpression">An expression that represents an event attach or detach action.</param>
+ <param name="args">The event arguments to pass for the raised event.</param>
+ <example>
+ The following example shows how to raise an event when
+ the setup is met:
+ <code>
+ var mock = new Mock<IContainer>();
+
+ mock.Setup(add => add.Add(It.IsAny<string>(), It.IsAny<object>()))
+ .Raises(add => add.Added += null, EventArgs.Empty);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.Func{System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised
+ when the setup is matched.
+ </summary>
+ <param name="eventExpression">An expression that represents an event attach or detach action.</param>
+ <param name="func">A function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.Object[])">
+ <summary>
+ Specifies the custom event that will be raised
+ when the setup is matched.
+ </summary>
+ <param name="eventExpression">An expression that represents an event attach or detach action.</param>
+ <param name="args">The arguments to pass to the custom delegate (non EventHandler-compatible).</param>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``1(System.Action{`0},System.Func{``0,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``2(System.Action{`0},System.Func{``0,``1,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``3(System.Action{`0},System.Func{``0,``1,``2,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``4(System.Action{`0},System.Func{``0,``1,``2,``3,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``5(System.Action{`0},System.Func{``0,``1,``2,``3,``4,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``6(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``7(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``8(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``9(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``10(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``11(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``12(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``13(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``14(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``15(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``16(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T16">The type of the sixteenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="T:Moq.Language.IReturns`2">
+ <summary>
+ Defines the <c>Returns</c> verb.
+ </summary>
+ <typeparam name="TMock">Mocked type.</typeparam>
+ <typeparam name="TResult">Type of the return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns(`1)">
+ <summary>
+ Specifies the value to return.
+ </summary>
+ <param name="value">The value to return, or <see langword="null"/>.</param>
+ <example>
+ Return a <c>true</c> value from the method call:
+ <code>
+ mock.Setup(x => x.Execute("ping"))
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns(System.Func{`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method.
+ </summary>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <example group="returns">
+ Return a calculated value when the method is called:
+ <code>
+ mock.Setup(x => x.Execute("ping"))
+ .Returns(() => returnValues[0]);
+ </code>
+ The lambda expression to retrieve the return value is lazy-executed,
+ meaning that its value may change depending on the moment the method
+ is executed and the value the <c>returnValues</c> array has at
+ that moment.
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``1(System.Func{``0,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T">The type of the argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <example group="returns">
+ Return a calculated value which is evaluated lazily at the time of the invocation.
+ <para>
+ The lookup list can change between invocations and the setup
+ will return different values accordingly. Also, notice how the specific
+ string argument is retrieved by simply declaring it as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(It.IsAny<string>()))
+ .Returns((string command) => returnValues[command]);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``2(System.Func{``0,``1,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2) => arg1 + arg2);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``3(System.Func{``0,``1,``2,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3) => arg1 + arg2 + arg3);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``4(System.Func{``0,``1,``2,``3,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4) => arg1 + arg2 + arg3 + arg4);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``5(System.Func{``0,``1,``2,``3,``4,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5) => arg1 + arg2 + arg3 + arg4 + arg5);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``6(System.Func{``0,``1,``2,``3,``4,``5,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``7(System.Func{``0,``1,``2,``3,``4,``5,``6,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``8(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``9(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``10(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``11(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``12(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``13(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``14(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``15(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``16(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <typeparam name="T16">The type of the sixteenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15, string arg16) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15 + arg16);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.ISetupSequentialResult`1">
+ <summary>
+ Language for ReturnSequence
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ISetupSequentialResult`1.Returns(`0)">
+ <summary>
+ Returns value
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ISetupSequentialResult`1.Throws(System.Exception)">
+ <summary>
+ Throws an exception
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ISetupSequentialResult`1.Throws``1">
+ <summary>
+ Throws an exception
+ </summary>
+ </member>
+ <member name="F:Moq.Linq.FluentMockVisitor.isFirst">
+ <summary>
+ The first method call or member access will be the
+ last segment of the expression (depth-first traversal),
+ which is the one we have to Setup rather than FluentMock.
+ And the last one is the one we have to Mock.Get rather
+ than FluentMock.
+ </summary>
+ </member>
+ <member name="T:Moq.Mock">
+ <summary>
+ Base class for mocks and static helper class with methods that
+ apply to mocked objects, such as <see cref="M:Moq.Mock.Get``1(``0)"/> to
+ retrieve a <see cref="T:Moq.Mock`1"/> from an object instance.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.Of``1">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.Mock.Of``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <param name="predicate">The predicate with the specification of how the mocked object should behave.</param>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.Mock.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:Moq.Mock"/> class.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.Get``1(``0)">
+ <summary>
+ Retrieves the mock object for the given object instance.
+ </summary><typeparam name="T">
+ Type of the mock to retrieve. Can be omitted as it's inferred
+ from the object instance passed in as the <paramref name="mocked"/> instance.
+ </typeparam><param name="mocked">The instance of the mocked object.</param><returns>The mock associated with the mocked object.</returns><exception cref="T:System.ArgumentException">
+ The received <paramref name="mocked"/> instance
+ was not created by Moq.
+ </exception><example group="advanced">
+ The following example shows how to add a new setup to an object
+ instance which is not the original <see cref="T:Moq.Mock`1"/> but rather
+ the object associated with it:
+ <code>
+ // Typed instance, not the mock, is retrieved from some test API.
+ HttpContextBase context = GetMockContext();
+
+ // context.Request is the typed object from the "real" API
+ // so in order to add a setup to it, we need to get
+ // the mock that "owns" it
+ Mock<HttpRequestBase> request = Mock.Get(context.Request);
+ mock.Setup(req => req.AppRelativeCurrentExecutionFilePath)
+ .Returns(tempUrl);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock.OnGetObject">
+ <summary>
+ Returns the mocked object value.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.Verify">
+ <summary>
+ Verifies that all verifiable expectations have been met.
+ </summary><example group="verification">
+ This example sets up an expectation and marks it as verifiable. After
+ the mock is used, a <c>Verify()</c> call is issued on the mock
+ to ensure the method in the setup was invoked:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ this.Setup(x => x.HasInventory(TALISKER, 50)).Verifiable().Returns(true);
+ ...
+ // other test code
+ ...
+ // Will throw if the test code has didn't call HasInventory.
+ this.Verify();
+ </code>
+ </example><exception cref="T:Moq.MockException">Not all verifiable expectations were met.</exception>
+ </member>
+ <member name="M:Moq.Mock.VerifyAll">
+ <summary>
+ Verifies all expectations regardless of whether they have
+ been flagged as verifiable.
+ </summary><example group="verification">
+ This example sets up an expectation without marking it as verifiable. After
+ the mock is used, a <see cref="M:Moq.Mock.VerifyAll"/> call is issued on the mock
+ to ensure that all expectations are met:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ this.Setup(x => x.HasInventory(TALISKER, 50)).Returns(true);
+ ...
+ // other test code
+ ...
+ // Will throw if the test code has didn't call HasInventory, even
+ // that expectation was not marked as verifiable.
+ this.VerifyAll();
+ </code>
+ </example><exception cref="T:Moq.MockException">At least one expectation was not met.</exception>
+ </member>
+ <member name="M:Moq.Mock.GetInterceptor(System.Linq.Expressions.Expression,Moq.Mock)">
+ <summary>
+ Gets the interceptor target for the given expression and root mock,
+ building the intermediate hierarchy of mock objects if necessary.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.DoRaise(System.Reflection.EventInfo,System.EventArgs)">
+ <summary>
+ Raises the associated event with the given
+ event argument data.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.DoRaise(System.Reflection.EventInfo,System.Object[])">
+ <summary>
+ Raises the associated event with the given
+ event argument data.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.As``1">
+ <summary>
+ Adds an interface implementation to the mock,
+ allowing setups to be specified for it.
+ </summary><remarks>
+ This method can only be called before the first use
+ of the mock <see cref="P:Moq.Mock.Object"/> property, at which
+ point the runtime type has already been generated
+ and no more interfaces can be added to it.
+ <para>
+ Also, <typeparamref name="TInterface"/> must be an
+ interface and not a class, which must be specified
+ when creating the mock instead.
+ </para>
+ </remarks><exception cref="T:System.InvalidOperationException">
+ The mock type
+ has already been generated by accessing the <see cref="P:Moq.Mock.Object"/> property.
+ </exception><exception cref="T:System.ArgumentException">
+ The <typeparamref name="TInterface"/> specified
+ is not an interface.
+ </exception><example>
+ The following example creates a mock for the main interface
+ and later adds <see cref="T:System.IDisposable"/> to it to verify
+ it's called by the consumer code:
+ <code>
+ var mock = new Mock<IProcessor>();
+ mock.Setup(x => x.Execute("ping"));
+
+ // add IDisposable interface
+ var disposable = mock.As<IDisposable>();
+ disposable.Setup(d => d.Dispose()).Verifiable();
+ </code>
+ </example><typeparam name="TInterface">Type of interface to cast the mock to.</typeparam>
+ </member>
+ <member name="M:Moq.Mock.SetReturnsDefault``1(``0)">
+ <!-- No matching elements were found for the following include tag --><include file="Mock.Generic.xdoc" path="docs/doc[@for="Mock.SetReturnDefault{TReturn}"]/*"/>
+ </member>
+ <member name="P:Moq.Mock.Behavior">
+ <summary>
+ Behavior of the mock, according to the value set in the constructor.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.CallBase">
+ <summary>
+ Whether the base member virtual implementation will be called
+ for mocked classes if no setup is matched. Defaults to <see langword="false"/>.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.DefaultValue">
+ <summary>
+ Specifies the behavior to use when returning default values for
+ unexpected invocations on loose mocks.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.Object">
+ <summary>
+ Gets the mocked object instance.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.MockedType">
+ <summary>
+ Retrieves the type of the mocked object, its generic type argument.
+ This is used in the auto-mocking of hierarchy access.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.DefaultValueProvider">
+ <summary>
+ Specifies the class that will determine the default
+ value to return when invocations are made that
+ have no setups and need to return a default
+ value (for loose mocks).
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.ImplementedInterfaces">
+ <summary>
+ Exposes the list of extra interfaces implemented by the mock.
+ </summary>
+ </member>
+ <member name="T:Moq.MockRepository">
+ <summary>
+ Utility repository class to use to construct multiple
+ mocks when consistent verification is
+ desired for all of them.
+ </summary>
+ <remarks>
+ If multiple mocks will be created during a test, passing
+ the desired <see cref="T:Moq.MockBehavior"/> (if different than the
+ <see cref="F:Moq.MockBehavior.Default"/> or the one
+ passed to the repository constructor) and later verifying each
+ mock can become repetitive and tedious.
+ <para>
+ This repository class helps in that scenario by providing a
+ simplified creation of multiple mocks with a default
+ <see cref="T:Moq.MockBehavior"/> (unless overriden by calling
+ <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/>) and posterior verification.
+ </para>
+ </remarks>
+ <example group="repository">
+ The following is a straightforward example on how to
+ create and automatically verify strict mocks using a <see cref="T:Moq.MockRepository"/>:
+ <code>
+ var repository = new MockRepository(MockBehavior.Strict);
+
+ var foo = repository.Create<IFoo>();
+ var bar = repository.Create<IBar>();
+
+ // no need to call Verifiable() on the setup
+ // as we'll be validating all of them anyway.
+ foo.Setup(f => f.Do());
+ bar.Setup(b => b.Redo());
+
+ // exercise the mocks here
+
+ repository.VerifyAll();
+ // At this point all setups are already checked
+ // and an optional MockException might be thrown.
+ // Note also that because the mocks are strict, any invocation
+ // that doesn't have a matching setup will also throw a MockException.
+ </code>
+ The following examples shows how to setup the repository
+ to create loose mocks and later verify only verifiable setups:
+ <code>
+ var repository = new MockRepository(MockBehavior.Loose);
+
+ var foo = repository.Create<IFoo>();
+ var bar = repository.Create<IBar>();
+
+ // this setup will be verified when we verify the repository
+ foo.Setup(f => f.Do()).Verifiable();
+
+ // this setup will NOT be verified
+ foo.Setup(f => f.Calculate());
+
+ // this setup will be verified when we verify the repository
+ bar.Setup(b => b.Redo()).Verifiable();
+
+ // exercise the mocks here
+ // note that because the mocks are Loose, members
+ // called in the interfaces for which no matching
+ // setups exist will NOT throw exceptions,
+ // and will rather return default values.
+
+ repository.Verify();
+ // At this point verifiable setups are already checked
+ // and an optional MockException might be thrown.
+ </code>
+ The following examples shows how to setup the repository with a
+ default strict behavior, overriding that default for a
+ specific mock:
+ <code>
+ var repository = new MockRepository(MockBehavior.Strict);
+
+ // this particular one we want loose
+ var foo = repository.Create<IFoo>(MockBehavior.Loose);
+ var bar = repository.Create<IBar>();
+
+ // specify setups
+
+ // exercise the mocks here
+
+ repository.Verify();
+ </code>
+ </example>
+ <seealso cref="T:Moq.MockBehavior"/>
+ </member>
+ <member name="T:Moq.MockFactory">
+ <summary>
+ Utility factory class to use to construct multiple
+ mocks when consistent verification is
+ desired for all of them.
+ </summary>
+ <remarks>
+ If multiple mocks will be created during a test, passing
+ the desired <see cref="T:Moq.MockBehavior"/> (if different than the
+ <see cref="F:Moq.MockBehavior.Default"/> or the one
+ passed to the factory constructor) and later verifying each
+ mock can become repetitive and tedious.
+ <para>
+ This factory class helps in that scenario by providing a
+ simplified creation of multiple mocks with a default
+ <see cref="T:Moq.MockBehavior"/> (unless overriden by calling
+ <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/>) and posterior verification.
+ </para>
+ </remarks>
+ <example group="factory">
+ The following is a straightforward example on how to
+ create and automatically verify strict mocks using a <see cref="T:Moq.MockFactory"/>:
+ <code>
+ var factory = new MockFactory(MockBehavior.Strict);
+
+ var foo = factory.Create<IFoo>();
+ var bar = factory.Create<IBar>();
+
+ // no need to call Verifiable() on the setup
+ // as we'll be validating all of them anyway.
+ foo.Setup(f => f.Do());
+ bar.Setup(b => b.Redo());
+
+ // exercise the mocks here
+
+ factory.VerifyAll();
+ // At this point all setups are already checked
+ // and an optional MockException might be thrown.
+ // Note also that because the mocks are strict, any invocation
+ // that doesn't have a matching setup will also throw a MockException.
+ </code>
+ The following examples shows how to setup the factory
+ to create loose mocks and later verify only verifiable setups:
+ <code>
+ var factory = new MockFactory(MockBehavior.Loose);
+
+ var foo = factory.Create<IFoo>();
+ var bar = factory.Create<IBar>();
+
+ // this setup will be verified when we verify the factory
+ foo.Setup(f => f.Do()).Verifiable();
+
+ // this setup will NOT be verified
+ foo.Setup(f => f.Calculate());
+
+ // this setup will be verified when we verify the factory
+ bar.Setup(b => b.Redo()).Verifiable();
+
+ // exercise the mocks here
+ // note that because the mocks are Loose, members
+ // called in the interfaces for which no matching
+ // setups exist will NOT throw exceptions,
+ // and will rather return default values.
+
+ factory.Verify();
+ // At this point verifiable setups are already checked
+ // and an optional MockException might be thrown.
+ </code>
+ The following examples shows how to setup the factory with a
+ default strict behavior, overriding that default for a
+ specific mock:
+ <code>
+ var factory = new MockFactory(MockBehavior.Strict);
+
+ // this particular one we want loose
+ var foo = factory.Create<IFoo>(MockBehavior.Loose);
+ var bar = factory.Create<IBar>();
+
+ // specify setups
+
+ // exercise the mocks here
+
+ factory.Verify();
+ </code>
+ </example>
+ <seealso cref="T:Moq.MockBehavior"/>
+ </member>
+ <member name="M:Moq.MockFactory.#ctor(Moq.MockBehavior)">
+ <summary>
+ Initializes the factory with the given <paramref name="defaultBehavior"/>
+ for newly created mocks from the factory.
+ </summary>
+ <param name="defaultBehavior">The behavior to use for mocks created
+ using the <see cref="M:Moq.MockFactory.Create``1"/> factory method if not overriden
+ by using the <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/> overload.</param>
+ </member>
+ <member name="M:Moq.MockFactory.Create``1">
+ <summary>
+ Creates a new mock with the default <see cref="T:Moq.MockBehavior"/>
+ specified at factory construction time.
+ </summary>
+ <typeparam name="T">Type to mock.</typeparam>
+ <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
+ <example ignore="true">
+ <code>
+ var factory = new MockFactory(MockBehavior.Strict);
+
+ var foo = factory.Create<IFoo>();
+ // use mock on tests
+
+ factory.VerifyAll();
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.MockFactory.Create``1(System.Object[])">
+ <summary>
+ Creates a new mock with the default <see cref="T:Moq.MockBehavior"/>
+ specified at factory construction time and with the
+ the given constructor arguments for the class.
+ </summary>
+ <remarks>
+ The mock will try to find the best match constructor given the
+ constructor arguments, and invoke that to initialize the instance.
+ This applies only to classes, not interfaces.
+ </remarks>
+ <typeparam name="T">Type to mock.</typeparam>
+ <param name="args">Constructor arguments for mocked classes.</param>
+ <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
+ <example ignore="true">
+ <code>
+ var factory = new MockFactory(MockBehavior.Default);
+
+ var mock = factory.Create<MyBase>("Foo", 25, true);
+ // use mock on tests
+
+ factory.Verify();
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.MockFactory.Create``1(Moq.MockBehavior)">
+ <summary>
+ Creates a new mock with the given <paramref name="behavior"/>.
+ </summary>
+ <typeparam name="T">Type to mock.</typeparam>
+ <param name="behavior">Behavior to use for the mock, which overrides
+ the default behavior specified at factory construction time.</param>
+ <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
+ <example group="factory">
+ The following example shows how to create a mock with a different
+ behavior to that specified as the default for the factory:
+ <code>
+ var factory = new MockFactory(MockBehavior.Strict);
+
+ var foo = factory.Create<IFoo>(MockBehavior.Loose);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.MockFactory.Create``1(Moq.MockBehavior,System.Object[])">
+ <summary>
+ Creates a new mock with the given <paramref name="behavior"/>
+ and with the the given constructor arguments for the class.
+ </summary>
+ <remarks>
+ The mock will try to find the best match constructor given the
+ constructor arguments, and invoke that to initialize the instance.
+ This applies only to classes, not interfaces.
+ </remarks>
+ <typeparam name="T">Type to mock.</typeparam>
+ <param name="behavior">Behavior to use for the mock, which overrides
+ the default behavior specified at factory construction time.</param>
+ <param name="args">Constructor arguments for mocked classes.</param>
+ <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
+ <example group="factory">
+ The following example shows how to create a mock with a different
+ behavior to that specified as the default for the factory, passing
+ constructor arguments:
+ <code>
+ var factory = new MockFactory(MockBehavior.Default);
+
+ var mock = factory.Create<MyBase>(MockBehavior.Strict, "Foo", 25, true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.MockFactory.CreateMock``1(Moq.MockBehavior,System.Object[])">
+ <summary>
+ Implements creation of a new mock within the factory.
+ </summary>
+ <typeparam name="T">Type to mock.</typeparam>
+ <param name="behavior">The behavior for the new mock.</param>
+ <param name="args">Optional arguments for the construction of the mock.</param>
+ </member>
+ <member name="M:Moq.MockFactory.Verify">
+ <summary>
+ Verifies all verifiable expectations on all mocks created
+ by this factory.
+ </summary>
+ <seealso cref="M:Moq.Mock.Verify"/>
+ <exception cref="T:Moq.MockException">One or more mocks had expectations that were not satisfied.</exception>
+ </member>
+ <member name="M:Moq.MockFactory.VerifyAll">
+ <summary>
+ Verifies all verifiable expectations on all mocks created
+ by this factory.
+ </summary>
+ <seealso cref="M:Moq.Mock.Verify"/>
+ <exception cref="T:Moq.MockException">One or more mocks had expectations that were not satisfied.</exception>
+ </member>
+ <member name="M:Moq.MockFactory.VerifyMocks(System.Action{Moq.Mock})">
+ <summary>
+ Invokes <paramref name="verifyAction"/> for each mock
+ in <see cref="P:Moq.MockFactory.Mocks"/>, and accumulates the resulting
+ <see cref="T:Moq.MockVerificationException"/> that might be
+ thrown from the action.
+ </summary>
+ <param name="verifyAction">The action to execute against
+ each mock.</param>
+ </member>
+ <member name="P:Moq.MockFactory.CallBase">
+ <summary>
+ Whether the base member virtual implementation will be called
+ for mocked classes if no setup is matched. Defaults to <see langword="false"/>.
+ </summary>
+ </member>
+ <member name="P:Moq.MockFactory.DefaultValue">
+ <summary>
+ Specifies the behavior to use when returning default values for
+ unexpected invocations on loose mocks.
+ </summary>
+ </member>
+ <member name="P:Moq.MockFactory.Mocks">
+ <summary>
+ Gets the mocks that have been created by this factory and
+ that will get verified together.
+ </summary>
+ </member>
+ <member name="M:Moq.MockRepository.Of``1">
+ <summary>
+ Access the universe of mocks of the given type, to retrieve those
+ that behave according to the LINQ query specification.
+ </summary>
+ <typeparam name="T">The type of the mocked object to query.</typeparam>
+ </member>
+ <member name="M:Moq.MockRepository.Of``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Access the universe of mocks of the given type, to retrieve those
+ that behave according to the LINQ query specification.
+ </summary>
+ <param name="specification">The predicate with the setup expressions.</param>
+ <typeparam name="T">The type of the mocked object to query.</typeparam>
+ </member>
+ <member name="M:Moq.MockRepository.OneOf``1">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.MockRepository.OneOf``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <param name="specification">The predicate with the setup expressions.</param>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.MockRepository.CreateMockQuery``1">
+ <summary>
+ Creates the mock query with the underlying queriable implementation.
+ </summary>
+ </member>
+ <member name="M:Moq.MockRepository.CreateQueryable``1">
+ <summary>
+ Wraps the enumerator inside a queryable.
+ </summary>
+ </member>
+ <member name="M:Moq.MockRepository.CreateMocks``1">
+ <summary>
+ Method that is turned into the actual call from .Query{T}, to
+ transform the queryable query into a normal enumerable query.
+ This method is never used directly by consumers.
+ </summary>
+ </member>
+ <member name="M:Moq.MockRepository.#ctor(Moq.MockBehavior)">
+ <summary>
+ Initializes the repository with the given <paramref name="defaultBehavior"/>
+ for newly created mocks from the repository.
+ </summary>
+ <param name="defaultBehavior">The behavior to use for mocks created
+ using the <see cref="M:Moq.MockFactory.Create``1"/> repository method if not overriden
+ by using the <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/> overload.</param>
+ </member>
+ <member name="T:Moq.EmptyDefaultValueProvider">
+ <summary>
+ A <see cref="T:Moq.IDefaultValueProvider"/> that returns an empty default value
+ for invocations that do not have setups or return values, with loose mocks.
+ This is the default behavior for a mock.
+ </summary>
+ </member>
+ <member name="T:Moq.IDefaultValueProvider">
+ <summary>
+ Interface to be implemented by classes that determine the
+ default value of non-expected invocations.
+ </summary>
+ </member>
+ <member name="M:Moq.IDefaultValueProvider.DefineDefault``1(``0)">
+ <summary>
+ Defines the default value to return in all the methods returning <typeparamref name="T"/>.
+ </summary><typeparam name="T">The type of the return value.</typeparam><param name="value">The value to set as default.</param>
+ </member>
+ <member name="M:Moq.IDefaultValueProvider.ProvideDefault(System.Reflection.MethodInfo)">
+ <summary>
+ Provides a value for the given member and arguments.
+ </summary><param name="member">
+ The member to provide a default value for.
+ </param>
+ </member>
+ <member name="T:Moq.ExpressionStringBuilder">
+ <summary>
+ The intention of <see cref="T:Moq.ExpressionStringBuilder"/> is to create a more readable
+ string representation for the failure message.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.Flow.ICallbackResult">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.IThrows">
+ <summary>
+ Defines the <c>Throws</c> verb.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.IThrows.Throws(System.Exception)">
+ <summary>
+ Specifies the exception to throw when the method is invoked.
+ </summary>
+ <param name="exception">Exception instance to throw.</param>
+ <example>
+ This example shows how to throw an exception when the method is
+ invoked with an empty string argument:
+ <code>
+ mock.Setup(x => x.Execute(""))
+ .Throws(new ArgumentException());
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IThrows.Throws``1">
+ <summary>
+ Specifies the type of exception to throw when the method is invoked.
+ </summary>
+ <typeparam name="TException">Type of exception to instantiate and throw when the setup is matched.</typeparam>
+ <example>
+ This example shows how to throw an exception when the method is
+ invoked with an empty string argument:
+ <code>
+ mock.Setup(x => x.Execute(""))
+ .Throws<ArgumentException>();
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.IThrowsResult">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.IOccurrence">
+ <summary>
+ Defines occurrence members to constraint setups.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.IOccurrence.AtMostOnce">
+ <summary>
+ The expected invocation can happen at most once.
+ </summary>
+ <example>
+ <code>
+ var mock = new Mock<ICommand>();
+ mock.Setup(foo => foo.Execute("ping"))
+ .AtMostOnce();
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IOccurrence.AtMost(System.Int32)">
+ <summary>
+ The expected invocation can happen at most specified number of times.
+ </summary>
+ <param name="callCount">The number of times to accept calls.</param>
+ <example>
+ <code>
+ var mock = new Mock<ICommand>();
+ mock.Setup(foo => foo.Execute("ping"))
+ .AtMost( 5 );
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.IVerifies">
+ <summary>
+ Defines the <c>Verifiable</c> verb.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.IVerifies.Verifiable">
+ <summary>
+ Marks the expectation as verifiable, meaning that a call
+ to <see cref="M:Moq.Mock.Verify"/> will check if this particular
+ expectation was met.
+ </summary>
+ <example>
+ The following example marks the expectation as verifiable:
+ <code>
+ mock.Expect(x => x.Execute("ping"))
+ .Returns(true)
+ .Verifiable();
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IVerifies.Verifiable(System.String)">
+ <summary>
+ Marks the expectation as verifiable, meaning that a call
+ to <see cref="M:Moq.Mock.Verify"/> will check if this particular
+ expectation was met, and specifies a message for failures.
+ </summary>
+ <example>
+ The following example marks the expectation as verifiable:
+ <code>
+ mock.Expect(x => x.Execute("ping"))
+ .Returns(true)
+ .Verifiable("Ping should be executed always!");
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.ISetup`1">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.MethodCallReturn">
+ <devdoc>
+ We need this non-generics base class so that
+ we can use <see cref="P:Moq.MethodCallReturn.HasReturnValue"/> from
+ generic code.
+ </devdoc>
+ </member>
+ <member name="T:Moq.Language.Flow.ISetup`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.Flow.IReturnsThrows`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.Flow.ISetupGetter`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.ICallbackGetter`2">
+ <summary>
+ Defines the <c>Callback</c> verb for property getter setups.
+ </summary>
+ <seealso cref="M:Moq.Mock`1.SetupGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})"/>
+ <typeparam name="TMock">Mocked type.</typeparam>
+ <typeparam name="TProperty">Type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Language.ICallbackGetter`2.Callback(System.Action)">
+ <summary>
+ Specifies a callback to invoke when the property is retrieved.
+ </summary>
+ <param name="action">Callback method to invoke.</param>
+ <example>
+ Invokes the given callback with the property value being set.
+ <code>
+ mock.SetupGet(x => x.Suspended)
+ .Callback(() => called = true)
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.IReturnsThrowsGetter`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.IReturnsGetter`2">
+ <summary>
+ Defines the <c>Returns</c> verb for property get setups.
+ </summary>
+ <typeparam name="TMock">Mocked type.</typeparam>
+ <typeparam name="TProperty">Type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Language.IReturnsGetter`2.Returns(`1)">
+ <summary>
+ Specifies the value to return.
+ </summary>
+ <param name="value">The value to return, or <see langword="null"/>.</param>
+ <example>
+ Return a <c>true</c> value from the property getter call:
+ <code>
+ mock.SetupGet(x => x.Suspended)
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturnsGetter`2.Returns(System.Func{`1})">
+ <summary>
+ Specifies a function that will calculate the value to return for the property.
+ </summary>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <example>
+ Return a calculated value when the property is retrieved:
+ <code>
+ mock.SetupGet(x => x.Suspended)
+ .Returns(() => returnValues[0]);
+ </code>
+ The lambda expression to retrieve the return value is lazy-executed,
+ meaning that its value may change depending on the moment the property
+ is retrieved and the value the <c>returnValues</c> array has at
+ that moment.
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.IReturnsResult`1">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.MockSequence">
+ <summary>
+ Helper class to setup a full trace between many mocks
+ </summary>
+ </member>
+ <member name="M:Moq.MockSequence.#ctor">
+ <summary>
+ Initialize a trace setup
+ </summary>
+ </member>
+ <member name="P:Moq.MockSequence.Cyclic">
+ <summary>
+ Allow sequence to be repeated
+ </summary>
+ </member>
+ <member name="T:Moq.MockSequenceHelper">
+ <summary>
+ define nice api
+ </summary>
+ </member>
+ <member name="M:Moq.MockSequenceHelper.InSequence``1(Moq.Mock{``0},Moq.MockSequence)">
+ <summary>
+ Perform an expectation in the trace.
+ </summary>
+ </member>
+ <member name="T:Moq.MatcherAttribute">
+ <summary>
+ Marks a method as a matcher, which allows complete replacement
+ of the built-in <see cref="T:Moq.It"/> class with your own argument
+ matching rules.
+ </summary>
+ <remarks>
+ <b>This feature has been deprecated in favor of the new
+ and simpler <see cref="T:Moq.Match`1"/>.
+ </b>
+ <para>
+ The argument matching is used to determine whether a concrete
+ invocation in the mock matches a given setup. This
+ matching mechanism is fully extensible.
+ </para>
+ <para>
+ There are two parts of a matcher: the compiler matcher
+ and the runtime matcher.
+ <list type="bullet">
+ <item>
+ <term>Compiler matcher</term>
+ <description>Used to satisfy the compiler requirements for the
+ argument. Needs to be a method optionally receiving any arguments
+ you might need for the matching, but with a return type that
+ matches that of the argument.
+ <para>
+ Let's say I want to match a lists of orders that contains
+ a particular one. I might create a compiler matcher like the following:
+ </para>
+ <code>
+ public static class Orders
+ {
+ [Matcher]
+ public static IEnumerable<Order> Contains(Order order)
+ {
+ return null;
+ }
+ }
+ </code>
+ Now we can invoke this static method instead of an argument in an
+ invocation:
+ <code>
+ var order = new Order { ... };
+ var mock = new Mock<IRepository<Order>>();
+
+ mock.Setup(x => x.Save(Orders.Contains(order)))
+ .Throws<ArgumentException>();
+ </code>
+ Note that the return value from the compiler matcher is irrelevant.
+ This method will never be called, and is just used to satisfy the
+ compiler and to signal Moq that this is not a method that we want
+ to be invoked at runtime.
+ </description>
+ </item>
+ <item>
+ <term>Runtime matcher</term>
+ <description>
+ The runtime matcher is the one that will actually perform evaluation
+ when the test is run, and is defined by convention to have the
+ same signature as the compiler matcher, but where the return
+ value is the first argument to the call, which contains the
+ object received by the actual invocation at runtime:
+ <code>
+ public static bool Contains(IEnumerable<Order> orders, Order order)
+ {
+ return orders.Contains(order);
+ }
+ </code>
+ At runtime, the mocked method will be invoked with a specific
+ list of orders. This value will be passed to this runtime
+ matcher as the first argument, while the second argument is the
+ one specified in the setup (<c>x.Save(Orders.Contains(order))</c>).
+ <para>
+ The boolean returned determines whether the given argument has been
+ matched. If all arguments to the expected method are matched, then
+ the setup matches and is evaluated.
+ </para>
+ </description>
+ </item>
+ </list>
+ </para>
+ Using this extensible infrastructure, you can easily replace the entire
+ <see cref="T:Moq.It"/> set of matchers with your own. You can also avoid the
+ typical (and annoying) lengthy expressions that result when you have
+ multiple arguments that use generics.
+ </remarks>
+ <example>
+ The following is the complete example explained above:
+ <code>
+ public static class Orders
+ {
+ [Matcher]
+ public static IEnumerable<Order> Contains(Order order)
+ {
+ return null;
+ }
+
+ public static bool Contains(IEnumerable<Order> orders, Order order)
+ {
+ return orders.Contains(order);
+ }
+ }
+ </code>
+ And the concrete test using this matcher:
+ <code>
+ var order = new Order { ... };
+ var mock = new Mock<IRepository<Order>>();
+
+ mock.Setup(x => x.Save(Orders.Contains(order)))
+ .Throws<ArgumentException>();
+
+ // use mock, invoke Save, and have the matcher filter.
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Mock`1">
+ <summary>
+ Provides a mock implementation of <typeparamref name="T"/>.
+ </summary><remarks>
+ Any interface type can be used for mocking, but for classes, only abstract and virtual members can be mocked.
+ <para>
+ The behavior of the mock with regards to the setups and the actual calls is determined
+ by the optional <see cref="T:Moq.MockBehavior"/> that can be passed to the <see cref="M:Moq.Mock`1.#ctor(Moq.MockBehavior)"/>
+ constructor.
+ </para>
+ </remarks><typeparam name="T">Type to mock, which can be an interface or a class.</typeparam><example group="overview" order="0">
+ The following example shows establishing setups with specific values
+ for method invocations:
+ <code>
+ // Arrange
+ var order = new Order(TALISKER, 50);
+ var mock = new Mock<IWarehouse>();
+
+ mock.Setup(x => x.HasInventory(TALISKER, 50)).Returns(true);
+
+ // Act
+ order.Fill(mock.Object);
+
+ // Assert
+ Assert.True(order.IsFilled);
+ </code>
+ The following example shows how to use the <see cref="T:Moq.It"/> class
+ to specify conditions for arguments instead of specific values:
+ <code>
+ // Arrange
+ var order = new Order(TALISKER, 50);
+ var mock = new Mock<IWarehouse>();
+
+ // shows how to expect a value within a range
+ mock.Setup(x => x.HasInventory(
+ It.IsAny<string>(),
+ It.IsInRange(0, 100, Range.Inclusive)))
+ .Returns(false);
+
+ // shows how to throw for unexpected calls.
+ mock.Setup(x => x.Remove(
+ It.IsAny<string>(),
+ It.IsAny<int>()))
+ .Throws(new InvalidOperationException());
+
+ // Act
+ order.Fill(mock.Object);
+
+ // Assert
+ Assert.False(order.IsFilled);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.Expect(System.Linq.Expressions.Expression{System.Action{`0}})">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.Expect``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.ExpectGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.ExpectSet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.ExpectSet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},``0)">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor(System.Boolean)">
+ <summary>
+ Ctor invoked by AsTInterface exclusively.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor">
+ <summary>
+ Initializes an instance of the mock with <see cref="F:Moq.MockBehavior.Default">default behavior</see>.
+ </summary><example>
+ <code>var mock = new Mock<IFormatProvider>();</code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor(System.Object[])">
+ <summary>
+ Initializes an instance of the mock with <see cref="F:Moq.MockBehavior.Default">default behavior</see> and with
+ the given constructor arguments for the class. (Only valid when <typeparamref name="T"/> is a class)
+ </summary><remarks>
+ The mock will try to find the best match constructor given the constructor arguments, and invoke that
+ to initialize the instance. This applies only for classes, not interfaces.
+ </remarks><example>
+ <code>var mock = new Mock<MyProvider>(someArgument, 25);</code>
+ </example><param name="args">Optional constructor arguments if the mocked type is a class.</param>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor(Moq.MockBehavior)">
+ <summary>
+ Initializes an instance of the mock with the specified <see cref="T:Moq.MockBehavior">behavior</see>.
+ </summary><example>
+ <code>var mock = new Mock<IFormatProvider>(MockBehavior.Relaxed);</code>
+ </example><param name="behavior">Behavior of the mock.</param>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor(Moq.MockBehavior,System.Object[])">
+ <summary>
+ Initializes an instance of the mock with a specific <see cref="T:Moq.MockBehavior">behavior</see> with
+ the given constructor arguments for the class.
+ </summary><remarks>
+ The mock will try to find the best match constructor given the constructor arguments, and invoke that
+ to initialize the instance. This applies only to classes, not interfaces.
+ </remarks><example>
+ <code>var mock = new Mock<MyProvider>(someArgument, 25);</code>
+ </example><param name="behavior">Behavior of the mock.</param><param name="args">Optional constructor arguments if the mocked type is a class.</param>
+ </member>
+ <member name="M:Moq.Mock`1.OnGetObject">
+ <summary>
+ Returns the mocked object value.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.Setup(System.Linq.Expressions.Expression{System.Action{`0}})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a void method.
+ </summary><remarks>
+ If more than one setup is specified for the same method or property,
+ the latest one wins and is the one that will be executed.
+ </remarks><param name="expression">Lambda expression that specifies the expected method invocation.</param><example group="setups">
+ <code>
+ var mock = new Mock<IProcessor>();
+ mock.Setup(x => x.Execute("ping"));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.Setup``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a value returning method.
+ </summary><typeparam name="TResult">Type of the return value. Typically omitted as it can be inferred from the expression.</typeparam><remarks>
+ If more than one setup is specified for the same method or property,
+ the latest one wins and is the one that will be executed.
+ </remarks><param name="expression">Lambda expression that specifies the method invocation.</param><example group="setups">
+ <code>
+ mock.Setup(x => x.HasInventory("Talisker", 50)).Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a property getter.
+ </summary><remarks>
+ If more than one setup is set for the same property getter,
+ the latest one wins and is the one that will be executed.
+ </remarks><typeparam name="TProperty">Type of the property. Typically omitted as it can be inferred from the expression.</typeparam><param name="expression">Lambda expression that specifies the property getter.</param><example group="setups">
+ <code>
+ mock.SetupGet(x => x.Suspended)
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupSet``1(System.Action{`0})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a property setter.
+ </summary><remarks>
+ If more than one setup is set for the same property setter,
+ the latest one wins and is the one that will be executed.
+ <para>
+ This overloads allows the use of a callback already
+ typed for the property type.
+ </para>
+ </remarks><typeparam name="TProperty">Type of the property. Typically omitted as it can be inferred from the expression.</typeparam><param name="setterExpression">The Lambda expression that sets a property to a value.</param><example group="setups">
+ <code>
+ mock.SetupSet(x => x.Suspended = true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupSet(System.Action{`0})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a property setter.
+ </summary><remarks>
+ If more than one setup is set for the same property setter,
+ the latest one wins and is the one that will be executed.
+ </remarks><param name="setterExpression">Lambda expression that sets a property to a value.</param><example group="setups">
+ <code>
+ mock.SetupSet(x => x.Suspended = true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupProperty``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Specifies that the given property should have "property behavior",
+ meaning that setting its value will cause it to be saved and
+ later returned when the property is requested. (this is also
+ known as "stubbing").
+ </summary><typeparam name="TProperty">
+ Type of the property, inferred from the property
+ expression (does not need to be specified).
+ </typeparam><param name="property">Property expression to stub.</param><example>
+ If you have an interface with an int property <c>Value</c>, you might
+ stub it using the following straightforward call:
+ <code>
+ var mock = new Mock<IHaveValue>();
+ mock.Stub(v => v.Value);
+ </code>
+ After the <c>Stub</c> call has been issued, setting and
+ retrieving the object value will behave as expected:
+ <code>
+ IHaveValue v = mock.Object;
+
+ v.Value = 5;
+ Assert.Equal(5, v.Value);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupProperty``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},``0)">
+ <summary>
+ Specifies that the given property should have "property behavior",
+ meaning that setting its value will cause it to be saved and
+ later returned when the property is requested. This overload
+ allows setting the initial value for the property. (this is also
+ known as "stubbing").
+ </summary><typeparam name="TProperty">
+ Type of the property, inferred from the property
+ expression (does not need to be specified).
+ </typeparam><param name="property">Property expression to stub.</param><param name="initialValue">Initial value for the property.</param><example>
+ If you have an interface with an int property <c>Value</c>, you might
+ stub it using the following straightforward call:
+ <code>
+ var mock = new Mock<IHaveValue>();
+ mock.SetupProperty(v => v.Value, 5);
+ </code>
+ After the <c>SetupProperty</c> call has been issued, setting and
+ retrieving the object value will behave as expected:
+ <code>
+ IHaveValue v = mock.Object;
+ // Initial value was stored
+ Assert.Equal(5, v.Value);
+
+ // New value set which changes the initial value
+ v.Value = 6;
+ Assert.Equal(6, v.Value);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupAllProperties">
+ <summary>
+ Specifies that the all properties on the mock should have "property behavior",
+ meaning that setting its value will cause it to be saved and
+ later returned when the property is requested. (this is also
+ known as "stubbing"). The default value for each property will be the
+ one generated as specified by the <see cref="P:Moq.Mock.DefaultValue"/> property for the mock.
+ </summary><remarks>
+ If the mock <see cref="P:Moq.Mock.DefaultValue"/> is set to <see cref="F:Moq.DefaultValue.Mock"/>,
+ the mocked default values will also get all properties setup recursively.
+ </remarks>
+ </member>
+ <member name="M:Moq.Mock`1.When(System.Func{System.Boolean})">
+ <!-- No matching elements were found for the following include tag --><include file="Mock.Generic.xdoc" path="docs/doc[@for="Mock{T}.When"]/*"/>
+ </member>
+ <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}})">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock. Use
+ in conjuntion with the default <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><example group="verification">
+ This example assumes that the mock has been used, and later we want to verify that a given
+ invocation with specific parameters was performed:
+ <code>
+ var mock = new Mock<IProcessor>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't call Execute with a "ping" string argument.
+ mock.Verify(proc => proc.Execute("ping"));
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}},Moq.Times)">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock. Use
+ in conjuntion with the default <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}},System.String)">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock,
+ specifying a failure error message. Use in conjuntion with the default
+ <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><example group="verification">
+ This example assumes that the mock has been used, and later we want to verify that a given
+ invocation with specific parameters was performed:
+ <code>
+ var mock = new Mock<IProcessor>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't call Execute with a "ping" string argument.
+ mock.Verify(proc => proc.Execute("ping"));
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}},Moq.Times,System.String)">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock,
+ specifying a failure error message. Use in conjuntion with the default
+ <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param><param name="failMessage">Message to show if verification fails.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock. Use
+ in conjuntion with the default <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><example group="verification">
+ This example assumes that the mock has been used, and later we want to verify that a given
+ invocation with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't call HasInventory.
+ mock.Verify(warehouse => warehouse.HasInventory(TALISKER, 50));
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times)">
+ <summary>
+ Verifies that a specific invocation matching the given
+ expression was performed on the mock. Use in conjuntion
+ with the default <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},System.String)">
+ <summary>
+ Verifies that a specific invocation matching the given
+ expression was performed on the mock, specifying a failure
+ error message.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't call HasInventory.
+ mock.Verify(warehouse => warehouse.HasInventory(TALISKER, 50), "When filling orders, inventory has to be checked");
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times,System.String)">
+ <summary>
+ Verifies that a specific invocation matching the given
+ expression was performed on the mock, specifying a failure
+ error message.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Verifies that a property was read on the mock.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given property
+ was retrieved from it:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't retrieve the IsClosed property.
+ mock.VerifyGet(warehouse => warehouse.IsClosed);
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><typeparam name="TProperty">
+ Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.
+ </typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times)">
+ <summary>
+ Verifies that a property was read on the mock.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="times">The number of times a method is allowed to be called.</param><param name="expression">Expression to verify.</param><typeparam name="TProperty">
+ Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.
+ </typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},System.String)">
+ <summary>
+ Verifies that a property was read on the mock, specifying a failure
+ error message.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given property
+ was retrieved from it:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't retrieve the IsClosed property.
+ mock.VerifyGet(warehouse => warehouse.IsClosed);
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TProperty">
+ Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.
+ </typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times,System.String)">
+ <summary>
+ Verifies that a property was read on the mock, specifying a failure
+ error message.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="times">The number of times a method is allowed to be called.</param><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TProperty">
+ Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.
+ </typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifySet(System.Action{`0})">
+ <summary>
+ Verifies that a property was set on the mock.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given property
+ was set on it:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed = true);
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="setterExpression">Expression to verify.</param>
+ </member>
+ <member name="M:Moq.Mock`1.VerifySet(System.Action{`0},Moq.Times)">
+ <summary>
+ Verifies that a property was set on the mock.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="times">The number of times a method is allowed to be called.</param><param name="setterExpression">Expression to verify.</param>
+ </member>
+ <member name="M:Moq.Mock`1.VerifySet(System.Action{`0},System.String)">
+ <summary>
+ Verifies that a property was set on the mock, specifying
+ a failure message.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given property
+ was set on it:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed = true, "Warehouse should always be closed after the action");
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="setterExpression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param>
+ </member>
+ <member name="M:Moq.Mock`1.VerifySet(System.Action{`0},Moq.Times,System.String)">
+ <summary>
+ Verifies that a property was set on the mock, specifying
+ a failure message.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="times">The number of times a method is allowed to be called.</param><param name="setterExpression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Raise(System.Action{`0},System.EventArgs)">
+ <summary>
+ Raises the event referenced in <paramref name="eventExpression"/> using
+ the given <paramref name="args"/> argument.
+ </summary><exception cref="T:System.ArgumentException">
+ The <paramref name="args"/> argument is
+ invalid for the target event invocation, or the <paramref name="eventExpression"/> is
+ not an event attach or detach expression.
+ </exception><example>
+ The following example shows how to raise a <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event:
+ <code>
+ var mock = new Mock<IViewModel>();
+
+ mock.Raise(x => x.PropertyChanged -= null, new PropertyChangedEventArgs("Name"));
+ </code>
+ </example><example>
+ This example shows how to invoke an event with a custom event arguments
+ class in a view that will cause its corresponding presenter to
+ react by changing its state:
+ <code>
+ var mockView = new Mock<IOrdersView>();
+ var presenter = new OrdersPresenter(mockView.Object);
+
+ // Check that the presenter has no selection by default
+ Assert.Null(presenter.SelectedOrder);
+
+ // Raise the event with a specific arguments data
+ mockView.Raise(v => v.SelectionChanged += null, new OrderEventArgs { Order = new Order("moq", 500) });
+
+ // Now the presenter reacted to the event, and we have a selected order
+ Assert.NotNull(presenter.SelectedOrder);
+ Assert.Equal("moq", presenter.SelectedOrder.ProductName);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.Raise(System.Action{`0},System.Object[])">
+ <summary>
+ Raises the event referenced in <paramref name="eventExpression"/> using
+ the given <paramref name="args"/> argument for a non-EventHandler typed event.
+ </summary><exception cref="T:System.ArgumentException">
+ The <paramref name="args"/> arguments are
+ invalid for the target event invocation, or the <paramref name="eventExpression"/> is
+ not an event attach or detach expression.
+ </exception><example>
+ The following example shows how to raise a custom event that does not adhere to
+ the standard <c>EventHandler</c>:
+ <code>
+ var mock = new Mock<IViewModel>();
+
+ mock.Raise(x => x.MyEvent -= null, "Name", bool, 25);
+ </code>
+ </example>
+ </member>
+ <member name="P:Moq.Mock`1.Object">
+ <summary>
+ Exposes the mocked object instance.
+ </summary>
+ </member>
+ <member name="T:Moq.MockLegacyExtensions">
+ <summary>
+ Provides legacy API members as extensions so that
+ existing code continues to compile, but new code
+ doesn't see then.
+ </summary>
+ </member>
+ <member name="M:Moq.MockLegacyExtensions.SetupSet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1)">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.MockLegacyExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1)">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.MockLegacyExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="T:Moq.MockExtensions">
+ <summary>
+ Provides additional methods on mocks.
+ </summary>
+ <devdoc>
+ Provided as extension methods as they confuse the compiler
+ with the overloads taking Action.
+ </devdoc>
+ </member>
+ <member name="M:Moq.MockExtensions.SetupSet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a property setter, regardless of its value.
+ </summary>
+ <remarks>
+ If more than one setup is set for the same property setter,
+ the latest one wins and is the one that will be executed.
+ </remarks>
+ <typeparam name="TProperty">Type of the property. Typically omitted as it can be inferred from the expression.</typeparam>
+ <typeparam name="T">Type of the mock.</typeparam>
+ <param name="mock">The target mock for the setup.</param>
+ <param name="expression">Lambda expression that specifies the property setter.</param>
+ <example group="setups">
+ <code>
+ mock.SetupSet(x => x.Suspended);
+ </code>
+ </example>
+ <devdoc>
+ This method is not legacy, but must be on an extension method to avoid
+ confusing the compiler with the new Action syntax.
+ </devdoc>
+ </member>
+ <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
+ <summary>
+ Verifies that a property has been set on the mock, regarless of its value.
+ </summary>
+ <example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed);
+ </code>
+ </example>
+ <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
+ <param name="expression">Expression to verify.</param>
+ <param name="mock">The mock instance.</param>
+ <typeparam name="T">Mocked type.</typeparam>
+ <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.</typeparam>
+ </member>
+ <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.String)">
+ <summary>
+ Verifies that a property has been set on the mock, specifying a failure
+ error message.
+ </summary>
+ <example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed);
+ </code>
+ </example>
+ <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
+ <param name="expression">Expression to verify.</param>
+ <param name="failMessage">Message to show if verification fails.</param>
+ <param name="mock">The mock instance.</param>
+ <typeparam name="T">Mocked type.</typeparam>
+ <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.</typeparam>
+ </member>
+ <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},Moq.Times)">
+ <summary>
+ Verifies that a property has been set on the mock, regardless
+ of the value but only the specified number of times.
+ </summary>
+ <example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed);
+ </code>
+ </example>
+ <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="mock">The mock instance.</param>
+ <typeparam name="T">Mocked type.</typeparam>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <param name="expression">Expression to verify.</param>
+ <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.</typeparam>
+ </member>
+ <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},Moq.Times,System.String)">
+ <summary>
+ Verifies that a property has been set on the mock, regardless
+ of the value but only the specified number of times, and specifying a failure
+ error message.
+ </summary>
+ <example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed);
+ </code>
+ </example>
+ <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="mock">The mock instance.</param>
+ <typeparam name="T">Mocked type.</typeparam>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <param name="failMessage">Message to show if verification fails.</param>
+ <param name="expression">Expression to verify.</param>
+ <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.</typeparam>
+ </member>
+ <member name="T:Moq.SequenceExtensions">
+ <summary>
+ Helper for sequencing return values in the same method.
+ </summary>
+ </member>
+ <member name="M:Moq.SequenceExtensions.SetupSequence``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
+ <summary>
+ Return a sequence of values, once per call.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.ToLambda(System.Linq.Expressions.Expression)">
+ <summary>
+ Casts the expression to a lambda expression, removing
+ a cast if there's any.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.ToMethodCall(System.Linq.Expressions.LambdaExpression)">
+ <summary>
+ Casts the body of the lambda expression to a <see cref="T:System.Linq.Expressions.MethodCallExpression"/>.
+ </summary>
+ <exception cref="T:System.ArgumentException">If the body is not a method call.</exception>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.ToPropertyInfo(System.Linq.Expressions.LambdaExpression)">
+ <summary>
+ Converts the body of the lambda expression into the <see cref="T:System.Reflection.PropertyInfo"/> referenced by it.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.IsProperty(System.Linq.Expressions.LambdaExpression)">
+ <summary>
+ Checks whether the body of the lambda expression is a property access.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.IsProperty(System.Linq.Expressions.Expression)">
+ <summary>
+ Checks whether the expression is a property access.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.IsPropertyIndexer(System.Linq.Expressions.LambdaExpression)">
+ <summary>
+ Checks whether the body of the lambda expression is a property indexer, which is true
+ when the expression is an <see cref="T:System.Linq.Expressions.MethodCallExpression"/> whose
+ <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> has <see cref="P:System.Reflection.MethodBase.IsSpecialName"/>
+ equal to <see langword="true"/>.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.IsPropertyIndexer(System.Linq.Expressions.Expression)">
+ <summary>
+ Checks whether the expression is a property indexer, which is true
+ when the expression is an <see cref="T:System.Linq.Expressions.MethodCallExpression"/> whose
+ <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> has <see cref="P:System.Reflection.MethodBase.IsSpecialName"/>
+ equal to <see langword="true"/>.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.CastTo``1(System.Linq.Expressions.Expression)">
+ <summary>
+ Creates an expression that casts the given expression to the <typeparamref name="T"/>
+ type.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.ToStringFixed(System.Linq.Expressions.Expression)">
+ <devdoc>
+ TODO: remove this code when https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=331583
+ is fixed.
+ </devdoc>
+ </member>
+ <member name="T:Moq.Evaluator">
+ <summary>
+ Provides partial evaluation of subtrees, whenever they can be evaluated locally.
+ </summary>
+ <author>Matt Warren: http://blogs.msdn.com/mattwar</author>
+ <contributor>Documented by InSTEDD: http://www.instedd.org</contributor>
+ </member>
+ <member name="M:Moq.Evaluator.PartialEval(System.Linq.Expressions.Expression,System.Func{System.Linq.Expressions.Expression,System.Boolean})">
+ <summary>
+ Performs evaluation and replacement of independent sub-trees
+ </summary>
+ <param name="expression">The root of the expression tree.</param>
+ <param name="fnCanBeEvaluated">A function that decides whether a given expression
+ node can be part of the local function.</param>
+ <returns>A new tree with sub-trees evaluated and replaced.</returns>
+ </member>
+ <member name="M:Moq.Evaluator.PartialEval(System.Linq.Expressions.Expression)">
+ <summary>
+ Performs evaluation and replacement of independent sub-trees
+ </summary>
+ <param name="expression">The root of the expression tree.</param>
+ <returns>A new tree with sub-trees evaluated and replaced.</returns>
+ </member>
+ <member name="T:Moq.Evaluator.SubtreeEvaluator">
+ <summary>
+ Evaluates and replaces sub-trees when first candidate is reached (top-down)
+ </summary>
+ </member>
+ <member name="T:Moq.Evaluator.Nominator">
+ <summary>
+ Performs bottom-up analysis to determine which nodes can possibly
+ be part of an evaluated sub-tree.
+ </summary>
+ </member>
+ <member name="M:Moq.Guard.NotNull``1(System.Linq.Expressions.Expression{System.Func{``0}},``0)">
+ <summary>
+ Ensures the given <paramref name="value"/> is not null.
+ Throws <see cref="T:System.ArgumentNullException"/> otherwise.
+ </summary>
+ </member>
+ <member name="M:Moq.Guard.NotNullOrEmpty(System.Linq.Expressions.Expression{System.Func{System.String}},System.String)">
+ <summary>
+ Ensures the given string <paramref name="value"/> is not null or empty.
+ Throws <see cref="T:System.ArgumentNullException"/> in the first case, or
+ <see cref="T:System.ArgumentException"/> in the latter.
+ </summary>
+ </member>
+ <member name="M:Moq.Guard.NotOutOfRangeInclusive``1(System.Linq.Expressions.Expression{System.Func{``0}},``0,``0,``0)">
+ <summary>
+ Checks an argument to ensure it is in the specified range including the edges.
+ </summary>
+ <typeparam name="T">Type of the argument to check, it must be an <see cref="T:System.IComparable"/> type.
+ </typeparam>
+ <param name="reference">The expression containing the name of the argument.</param>
+ <param name="value">The argument value to check.</param>
+ <param name="from">The minimun allowed value for the argument.</param>
+ <param name="to">The maximun allowed value for the argument.</param>
+ </member>
+ <member name="M:Moq.Guard.NotOutOfRangeExclusive``1(System.Linq.Expressions.Expression{System.Func{``0}},``0,``0,``0)">
+ <summary>
+ Checks an argument to ensure it is in the specified range excluding the edges.
+ </summary>
+ <typeparam name="T">Type of the argument to check, it must be an <see cref="T:System.IComparable"/> type.
+ </typeparam>
+ <param name="reference">The expression containing the name of the argument.</param>
+ <param name="value">The argument value to check.</param>
+ <param name="from">The minimun allowed value for the argument.</param>
+ <param name="to">The maximun allowed value for the argument.</param>
+ </member>
+ <member name="T:Moq.IMocked`1">
+ <summary>
+ Implemented by all generated mock object instances.
+ </summary>
+ </member>
+ <member name="T:Moq.IMocked">
+ <summary>
+ Implemented by all generated mock object instances.
+ </summary>
+ </member>
+ <member name="P:Moq.IMocked.Mock">
+ <summary>
+ Reference the Mock that contains this as the <c>mock.Object</c> value.
+ </summary>
+ </member>
+ <member name="P:Moq.IMocked`1.Mock">
+ <summary>
+ Reference the Mock that contains this as the <c>mock.Object</c> value.
+ </summary>
+ </member>
+ <member name="T:Moq.Interceptor">
+ <summary>
+ Implements the actual interception and method invocation for
+ all mocks.
+ </summary>
+ </member>
+ <member name="M:Moq.Interceptor.GetEventFromName(System.String)">
+ <summary>
+ Get an eventInfo for a given event name. Search type ancestors depth first if necessary.
+ </summary>
+ <param name="eventName">Name of the event, with the set_ or get_ prefix already removed</param>
+ </member>
+ <member name="M:Moq.Interceptor.GetAncestorTypes(System.Type)">
+ <summary>
+ Given a type return all of its ancestors, both types and interfaces.
+ </summary>
+ <param name="initialType">The type to find immediate ancestors of</param>
+ </member>
+ <member name="T:Moq.Language.Flow.ISetupSetter`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.ICallbackSetter`1">
+ <summary>
+ Defines the <c>Callback</c> verb for property setter setups.
+ </summary>
+ <typeparam name="TProperty">Type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Language.ICallbackSetter`1.Callback(System.Action{`0})">
+ <summary>
+ Specifies a callback to invoke when the property is set that receives the
+ property value being set.
+ </summary>
+ <param name="action">Callback method to invoke.</param>
+ <example>
+ Invokes the given callback with the property value being set.
+ <code>
+ mock.SetupSet(x => x.Suspended)
+ .Callback((bool state) => Console.WriteLine(state));
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.It">
+ <summary>
+ Allows the specification of a matching condition for an
+ argument in a method invocation, rather than a specific
+ argument value. "It" refers to the argument being matched.
+ </summary><remarks>
+ This class allows the setup to match a method invocation
+ with an arbitrary value, with a value in a specified range, or
+ even one that matches a given predicate.
+ </remarks>
+ </member>
+ <member name="M:Moq.It.IsAny``1">
+ <summary>
+ Matches any value of the given <typeparamref name="TValue"/> type.
+ </summary><remarks>
+ Typically used when the actual argument value for a method
+ call is not relevant.
+ </remarks><example>
+ <code>
+ // Throws an exception for a call to Remove with any string value.
+ mock.Setup(x => x.Remove(It.IsAny<string>())).Throws(new InvalidOperationException());
+ </code>
+ </example><typeparam name="TValue">Type of the value.</typeparam>
+ </member>
+ <member name="M:Moq.It.Is``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Matches any value that satisfies the given predicate.
+ </summary><typeparam name="TValue">Type of the argument to check.</typeparam><param name="match">The predicate used to match the method argument.</param><remarks>
+ Allows the specification of a predicate to perform matching
+ of method call arguments.
+ </remarks><example>
+ This example shows how to return the value <c>1</c> whenever the argument to the
+ <c>Do</c> method is an even number.
+ <code>
+ mock.Setup(x => x.Do(It.Is<int>(i => i % 2 == 0)))
+ .Returns(1);
+ </code>
+ This example shows how to throw an exception if the argument to the
+ method is a negative number:
+ <code>
+ mock.Setup(x => x.GetUser(It.Is<int>(i => i < 0)))
+ .Throws(new ArgumentException());
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.It.IsInRange``1(``0,``0,Moq.Range)">
+ <summary>
+ Matches any value that is in the range specified.
+ </summary><typeparam name="TValue">Type of the argument to check.</typeparam><param name="from">The lower bound of the range.</param><param name="to">The upper bound of the range.</param><param name="rangeKind">
+ The kind of range. See <see cref="T:Moq.Range"/>.
+ </param><example>
+ The following example shows how to expect a method call
+ with an integer argument within the 0..100 range.
+ <code>
+ mock.Setup(x => x.HasInventory(
+ It.IsAny<string>(),
+ It.IsInRange(0, 100, Range.Inclusive)))
+ .Returns(false);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.It.IsRegex(System.String)">
+ <summary>
+ Matches a string argument if it matches the given regular expression pattern.
+ </summary><param name="regex">The pattern to use to match the string argument value.</param><example>
+ The following example shows how to expect a call to a method where the
+ string argument matches the given regular expression:
+ <code>
+ mock.Setup(x => x.Check(It.IsRegex("[a-z]+"))).Returns(1);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.It.IsRegex(System.String,System.Text.RegularExpressions.RegexOptions)">
+ <summary>
+ Matches a string argument if it matches the given regular expression pattern.
+ </summary><param name="regex">The pattern to use to match the string argument value.</param><param name="options">The options used to interpret the pattern.</param><example>
+ The following example shows how to expect a call to a method where the
+ string argument matches the given regular expression, in a case insensitive way:
+ <code>
+ mock.Setup(x => x.Check(It.IsRegex("[a-z]+", RegexOptions.IgnoreCase))).Returns(1);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Matchers.MatcherAttributeMatcher">
+ <summary>
+ Matcher to treat static functions as matchers.
+
+ mock.Setup(x => x.StringMethod(A.MagicString()));
+
+ public static class A
+ {
+ [Matcher]
+ public static string MagicString() { return null; }
+ public static bool MagicString(string arg)
+ {
+ return arg == "magic";
+ }
+ }
+
+ Will succeed if: mock.Object.StringMethod("magic");
+ and fail with any other call.
+ </summary>
+ </member>
+ <member name="T:Moq.MockBehavior">
+ <summary>
+ Options to customize the behavior of the mock.
+ </summary>
+ </member>
+ <member name="F:Moq.MockBehavior.Strict">
+ <summary>
+ Causes the mock to always throw
+ an exception for invocations that don't have a
+ corresponding setup.
+ </summary>
+ </member>
+ <member name="F:Moq.MockBehavior.Loose">
+ <summary>
+ Will never throw exceptions, returning default
+ values when necessary (null for reference types,
+ zero for value types or empty enumerables and arrays).
+ </summary>
+ </member>
+ <member name="F:Moq.MockBehavior.Default">
+ <summary>
+ Default mock behavior, which equals <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary>
+ </member>
+ <member name="T:Moq.MockException">
+ <summary>
+ Exception thrown by mocks when setups are not matched,
+ the mock is not properly setup, etc.
+ </summary>
+ <remarks>
+ A distinct exception type is provided so that exceptions
+ thrown by the mock can be differentiated in tests that
+ expect other exceptions to be thrown (i.e. ArgumentException).
+ <para>
+ Richer exception hierarchy/types are not provided as
+ tests typically should <b>not</b> catch or expect exceptions
+ from the mocks. These are typically the result of changes
+ in the tested class or its collaborators implementation, and
+ result in fixes in the mock setup so that they dissapear and
+ allow the test to pass.
+ </para>
+ </remarks>
+ </member>
+ <member name="M:Moq.MockException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Supports the serialization infrastructure.
+ </summary>
+ <param name="info">Serialization information.</param>
+ <param name="context">Streaming context.</param>
+ </member>
+ <member name="M:Moq.MockException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Supports the serialization infrastructure.
+ </summary>
+ <param name="info">Serialization information.</param>
+ <param name="context">Streaming context.</param>
+ </member>
+ <member name="T:Moq.MockException.ExceptionReason">
+ <summary>
+ Made internal as it's of no use for
+ consumers, but it's important for
+ our own tests.
+ </summary>
+ </member>
+ <member name="T:Moq.MockVerificationException">
+ <devdoc>
+ Used by the mock factory to accumulate verification
+ failures.
+ </devdoc>
+ </member>
+ <member name="M:Moq.MockVerificationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Supports the serialization infrastructure.
+ </summary>
+ </member>
+ <member name="T:Moq.Properties.Resources">
+ <summary>
+ A strongly-typed resource class, for looking up localized strings, etc.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ResourceManager">
+ <summary>
+ Returns the cached ResourceManager instance used by this class.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.Culture">
+ <summary>
+ Overrides the current thread's CurrentUICulture property for all
+ resource lookups using this strongly typed resource class.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.AlreadyInitialized">
+ <summary>
+ Looks up a localized string similar to Mock type has already been initialized by accessing its Object property. Adding interfaces must be done before that..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ArgumentCannotBeEmpty">
+ <summary>
+ Looks up a localized string similar to Value cannot be an empty string..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.AsMustBeInterface">
+ <summary>
+ Looks up a localized string similar to Can only add interfaces to the mock..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.CantSetReturnValueForVoid">
+ <summary>
+ Looks up a localized string similar to Can't set return value for void method {0}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ConstructorArgsForInterface">
+ <summary>
+ Looks up a localized string similar to Constructor arguments cannot be passed for interface mocks..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ConstructorNotFound">
+ <summary>
+ Looks up a localized string similar to A matching constructor for the given arguments was not found on the mocked type..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.EventNofFound">
+ <summary>
+ Looks up a localized string similar to Could not locate event for attach or detach method {0}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.FieldsNotSupported">
+ <summary>
+ Looks up a localized string similar to Expression {0} involves a field access, which is not supported. Use properties instead..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.InvalidMockClass">
+ <summary>
+ Looks up a localized string similar to Type to mock must be an interface or an abstract or non-sealed class. .
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.InvalidMockGetType">
+ <summary>
+ Looks up a localized string similar to Cannot retrieve a mock with the given object type {0} as it's not the main type of the mock or any of its additional interfaces.
+ Please cast the argument to one of the supported types: {1}.
+ Remember that there's no generics covariance in the CLR, so your object must be one of these types in order for the call to succeed..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.LinqBinaryOperatorNotSupported">
+ <summary>
+ Looks up a localized string similar to The equals ("==" or "=" in VB) and the conditional 'and' ("&&" or "AndAlso" in VB) operators are the only ones supported in the query specification expression. Unsupported expression: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.LinqMethodNotSupported">
+ <summary>
+ Looks up a localized string similar to LINQ method '{0}' not supported..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.LinqMethodNotVirtual">
+ <summary>
+ Looks up a localized string similar to Expression contains a call to a method which is not virtual (overridable in VB) or abstract. Unsupported expression: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MemberMissing">
+ <summary>
+ Looks up a localized string similar to Member {0}.{1} does not exist..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MethodIsPublic">
+ <summary>
+ Looks up a localized string similar to Method {0}.{1} is public. Use strong-typed Expect overload instead:
+ mock.Setup(x => x.{1}());
+ .
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MockExceptionMessage">
+ <summary>
+ Looks up a localized string similar to {0} invocation failed with mock behavior {1}.
+ {2}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MoreThanNCalls">
+ <summary>
+ Looks up a localized string similar to Expected only {0} calls to {1}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MoreThanOneCall">
+ <summary>
+ Looks up a localized string similar to Expected only one call to {0}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsAtLeast">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock at least {2} times, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsAtLeastOnce">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock at least once, but was never performed: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsAtMost">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock at most {3} times, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsAtMostOnce">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock at most once, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsBetweenExclusive">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock between {2} and {3} times (Exclusive), but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsBetweenInclusive">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock between {2} and {3} times (Inclusive), but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsExactly">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock exactly {2} times, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsNever">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock should never have been performed, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsOnce">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock once, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoSetup">
+ <summary>
+ Looks up a localized string similar to All invocations on the mock must have a corresponding setup..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ObjectInstanceNotMock">
+ <summary>
+ Looks up a localized string similar to Object instance was not created by Moq..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.OutExpressionMustBeConstantValue">
+ <summary>
+ Looks up a localized string similar to Out expression must evaluate to a constant value..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertyGetNotFound">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} does not have a getter..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertyMissing">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} does not exist..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertyNotReadable">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} is write-only..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertyNotWritable">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} is read-only..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertySetNotFound">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} does not have a setter..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.RaisedUnassociatedEvent">
+ <summary>
+ Looks up a localized string similar to Cannot raise a mocked event unless it has been associated (attached) to a concrete event in a mocked object..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.RefExpressionMustBeConstantValue">
+ <summary>
+ Looks up a localized string similar to Ref expression must evaluate to a constant value..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ReturnValueRequired">
+ <summary>
+ Looks up a localized string similar to Invocation needs to return a value and therefore must have a corresponding setup that provides it..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupLambda">
+ <summary>
+ Looks up a localized string similar to A lambda expression is expected as the argument to It.Is<T>..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupNever">
+ <summary>
+ Looks up a localized string similar to Invocation {0} should not have been made..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupNotMethod">
+ <summary>
+ Looks up a localized string similar to Expression is not a method invocation: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupNotProperty">
+ <summary>
+ Looks up a localized string similar to Expression is not a property access: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupNotSetter">
+ <summary>
+ Looks up a localized string similar to Expression is not a property setter invocation..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupOnNonMemberMethod">
+ <summary>
+ Looks up a localized string similar to Expression references a method that does not belong to the mocked object: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupOnNonOverridableMember">
+ <summary>
+ Looks up a localized string similar to Invalid setup on a non-virtual (overridable in VB) member: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.TypeNotImplementInterface">
+ <summary>
+ Looks up a localized string similar to Type {0} does not implement required interface {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.TypeNotInheritFromType">
+ <summary>
+ Looks up a localized string similar to Type {0} does not from required type {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnexpectedPublicProperty">
+ <summary>
+ Looks up a localized string similar to To specify a setup for public property {0}.{1}, use the typed overloads, such as:
+ mock.Setup(x => x.{1}).Returns(value);
+ mock.SetupGet(x => x.{1}).Returns(value); //equivalent to previous one
+ mock.SetupSet(x => x.{1}).Callback(callbackDelegate);
+ .
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedExpression">
+ <summary>
+ Looks up a localized string similar to Unsupported expression: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedIntermediateExpression">
+ <summary>
+ Looks up a localized string similar to Only property accesses are supported in intermediate invocations on a setup. Unsupported expression {0}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedIntermediateType">
+ <summary>
+ Looks up a localized string similar to Expression contains intermediate property access {0}.{1} which is of type {2} and cannot be mocked. Unsupported expression {3}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedMatcherParamsForSetter">
+ <summary>
+ Looks up a localized string similar to Setter expression cannot use argument matchers that receive parameters..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedMember">
+ <summary>
+ Looks up a localized string similar to Member {0} is not supported for protected mocking..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedNonStaticMatcherForSetter">
+ <summary>
+ Looks up a localized string similar to Setter expression can only use static custom matchers..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.VerficationFailed">
+ <summary>
+ Looks up a localized string similar to The following setups were not matched:
+ {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.VerifyOnNonVirtualMember">
+ <summary>
+ Looks up a localized string similar to Invalid verify on a non-virtual (overridable in VB) member: {0}.
+ </summary>
+ </member>
+ <member name="T:Moq.Protected.IProtectedMock`1">
+ <summary>
+ Allows setups to be specified for protected members by using their
+ name as a string, rather than strong-typing them which is not possible
+ due to their visibility.
+ </summary>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.Setup(System.String,System.Object[])">
+ <summary>
+ Specifies a setup for a void method invocation with the given
+ <paramref name="voidMethodName"/>, optionally specifying arguments for the method call.
+ </summary>
+ <param name="voidMethodName">The name of the void method to be invoked.</param>
+ <param name="args">The optional arguments for the invocation. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.Setup``1(System.String,System.Object[])">
+ <summary>
+ Specifies a setup for an invocation on a property or a non void method with the given
+ <paramref name="methodOrPropertyName"/>, optionally specifying arguments for the method call.
+ </summary>
+ <param name="methodOrPropertyName">The name of the method or property to be invoked.</param>
+ <param name="args">The optional arguments for the invocation. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ <typeparam name="TResult">The return type of the method or property.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.SetupGet``1(System.String)">
+ <summary>
+ Specifies a setup for an invocation on a property getter with the given
+ <paramref name="propertyName"/>.
+ </summary>
+ <param name="propertyName">The name of the property.</param>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.SetupSet``1(System.String,System.Object)">
+ <summary>
+ Specifies a setup for an invocation on a property setter with the given
+ <paramref name="propertyName"/>.
+ </summary>
+ <param name="propertyName">The name of the property.</param>
+ <param name="value">The property value. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.Verify(System.String,Moq.Times,System.Object[])">
+ <summary>
+ Specifies a verify for a void method with the given <paramref name="methodName"/>,
+ optionally specifying arguments for the method call. Use in conjuntion with the default
+ <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="methodName">The name of the void method to be verified.</param>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <param name="args">The optional arguments for the invocation. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.Verify``1(System.String,Moq.Times,System.Object[])">
+ <summary>
+ Specifies a verify for an invocation on a property or a non void method with the given
+ <paramref name="methodName"/>, optionally specifying arguments for the method call.
+ </summary>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="methodName">The name of the method or property to be invoked.</param>
+ <param name="args">The optional arguments for the invocation. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <typeparam name="TResult">The type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.VerifyGet``1(System.String,Moq.Times)">
+ <summary>
+ Specifies a verify for an invocation on a property getter with the given
+ <paramref name="propertyName"/>.
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ </summary>
+ <param name="propertyName">The name of the property.</param>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.VerifySet``1(System.String,Moq.Times,System.Object)">
+ <summary>
+ Specifies a setup for an invocation on a property setter with the given
+ <paramref name="propertyName"/>.
+ </summary>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="propertyName">The name of the property.</param>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <param name="value">The property value.</param>
+ <typeparam name="TProperty">The type of the property. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</typeparam>
+ </member>
+ <member name="T:Moq.Protected.ItExpr">
+ <summary>
+ Allows the specification of a matching condition for an
+ argument in a protected member setup, rather than a specific
+ argument value. "ItExpr" refers to the argument being matched.
+ </summary>
+ <remarks>
+ <para>Use this variant of argument matching instead of
+ <see cref="T:Moq.It"/> for protected setups.</para>
+ This class allows the setup to match a method invocation
+ with an arbitrary value, with a value in a specified range, or
+ even one that matches a given predicate, or null.
+ </remarks>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsNull``1">
+ <summary>
+ Matches a null value of the given <typeparamref name="TValue"/> type.
+ </summary>
+ <remarks>
+ Required for protected mocks as the null value cannot be used
+ directly as it prevents proper method overload selection.
+ </remarks>
+ <example>
+ <code>
+ // Throws an exception for a call to Remove with a null string value.
+ mock.Protected()
+ .Setup("Remove", ItExpr.IsNull<string>())
+ .Throws(new InvalidOperationException());
+ </code>
+ </example>
+ <typeparam name="TValue">Type of the value.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsAny``1">
+ <summary>
+ Matches any value of the given <typeparamref name="TValue"/> type.
+ </summary>
+ <remarks>
+ Typically used when the actual argument value for a method
+ call is not relevant.
+ </remarks>
+ <example>
+ <code>
+ // Throws an exception for a call to Remove with any string value.
+ mock.Protected()
+ .Setup("Remove", ItExpr.IsAny<string>())
+ .Throws(new InvalidOperationException());
+ </code>
+ </example>
+ <typeparam name="TValue">Type of the value.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.Is``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Matches any value that satisfies the given predicate.
+ </summary>
+ <typeparam name="TValue">Type of the argument to check.</typeparam>
+ <param name="match">The predicate used to match the method argument.</param>
+ <remarks>
+ Allows the specification of a predicate to perform matching
+ of method call arguments.
+ </remarks>
+ <example>
+ This example shows how to return the value <c>1</c> whenever the argument to the
+ <c>Do</c> method is an even number.
+ <code>
+ mock.Protected()
+ .Setup("Do", ItExpr.Is<int>(i => i % 2 == 0))
+ .Returns(1);
+ </code>
+ This example shows how to throw an exception if the argument to the
+ method is a negative number:
+ <code>
+ mock.Protected()
+ .Setup("GetUser", ItExpr.Is<int>(i => i < 0))
+ .Throws(new ArgumentException());
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsInRange``1(``0,``0,Moq.Range)">
+ <summary>
+ Matches any value that is in the range specified.
+ </summary>
+ <typeparam name="TValue">Type of the argument to check.</typeparam>
+ <param name="from">The lower bound of the range.</param>
+ <param name="to">The upper bound of the range.</param>
+ <param name="rangeKind">The kind of range. See <see cref="T:Moq.Range"/>.</param>
+ <example>
+ The following example shows how to expect a method call
+ with an integer argument within the 0..100 range.
+ <code>
+ mock.Protected()
+ .Setup("HasInventory",
+ ItExpr.IsAny<string>(),
+ ItExpr.IsInRange(0, 100, Range.Inclusive))
+ .Returns(false);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsRegex(System.String)">
+ <summary>
+ Matches a string argument if it matches the given regular expression pattern.
+ </summary>
+ <param name="regex">The pattern to use to match the string argument value.</param>
+ <example>
+ The following example shows how to expect a call to a method where the
+ string argument matches the given regular expression:
+ <code>
+ mock.Protected()
+ .Setup("Check", ItExpr.IsRegex("[a-z]+"))
+ .Returns(1);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsRegex(System.String,System.Text.RegularExpressions.RegexOptions)">
+ <summary>
+ Matches a string argument if it matches the given regular expression pattern.
+ </summary>
+ <param name="regex">The pattern to use to match the string argument value.</param>
+ <param name="options">The options used to interpret the pattern.</param>
+ <example>
+ The following example shows how to expect a call to a method where the
+ string argument matches the given regular expression, in a case insensitive way:
+ <code>
+ mock.Protected()
+ .Setup("Check", ItExpr.IsRegex("[a-z]+", RegexOptions.IgnoreCase))
+ .Returns(1);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Protected.ProtectedExtension">
+ <summary>
+ Enables the <c>Protected()</c> method on <see cref="T:Moq.Mock`1"/>,
+ allowing setups to be set for protected members by using their
+ name as a string, rather than strong-typing them which is not possible
+ due to their visibility.
+ </summary>
+ </member>
+ <member name="M:Moq.Protected.ProtectedExtension.Protected``1(Moq.Mock{``0})">
+ <summary>
+ Enable protected setups for the mock.
+ </summary>
+ <typeparam name="T">Mocked object type. Typically omitted as it can be inferred from the mock instance.</typeparam>
+ <param name="mock">The mock to set the protected setups on.</param>
+ </member>
+ <member name="T:ThisAssembly">
+ <group name="overview" title="Overview" order="0" />
+ <group name="setups" title="Specifying setups" order="1" />
+ <group name="returns" title="Returning values from members" order="2" />
+ <group name="verification" title="Verifying setups" order="3" />
+ <group name="advanced" title="Advanced scenarios" order="99" />
+ <group name="factory" title="Using MockFactory for consistency across mocks" order="4" />
+ </member>
+ <member name="T:Moq.Range">
+ <summary>
+ Kind of range to use in a filter specified through
+ <see cref="M:Moq.It.IsInRange``1(``0,``0,Moq.Range)"/>.
+ </summary>
+ </member>
+ <member name="F:Moq.Range.Inclusive">
+ <summary>
+ The range includes the <c>to</c> and
+ <c>from</c> values.
+ </summary>
+ </member>
+ <member name="F:Moq.Range.Exclusive">
+ <summary>
+ The range does not include the <c>to</c> and
+ <c>from</c> values.
+ </summary>
+ </member>
+ <member name="T:Moq.DefaultValue">
+ <summary>
+ Determines the way default values are generated
+ calculated for loose mocks.
+ </summary>
+ </member>
+ <member name="F:Moq.DefaultValue.Empty">
+ <summary>
+ Default behavior, which generates empty values for
+ value types (i.e. default(int)), empty array and
+ enumerables, and nulls for all other reference types.
+ </summary>
+ </member>
+ <member name="F:Moq.DefaultValue.Mock">
+ <summary>
+ Whenever the default value generated by <see cref="F:Moq.DefaultValue.Empty"/>
+ is null, replaces this value with a mock (if the type
+ can be mocked).
+ </summary>
+ <remarks>
+ For sealed classes, a null value will be generated.
+ </remarks>
+ </member>
+ <member name="T:Moq.Linq.MockQueryable`1">
+ <summary>
+ A default implementation of IQueryable for use with QueryProvider
+ </summary>
+ </member>
+ <member name="M:Moq.Linq.MockQueryable`1.#ctor(System.Linq.Expressions.MethodCallExpression)">
+ <summary>
+ The <paramref name="underlyingCreateMocks"/> is a
+ static method that returns an IQueryable of Mocks of T which is used to
+ apply the linq specification to.
+ </summary>
+ </member>
+ <member name="T:Moq.Match">
+ <summary>
+ Allows creation custom value matchers that can be used on setups and verification,
+ completely replacing the built-in <see cref="T:Moq.It"/> class with your own argument
+ matching rules.
+ </summary><remarks>
+ See also <see cref="T:Moq.Match`1"/>.
+ </remarks>
+ </member>
+ <member name="M:Moq.Match.Matcher``1">
+ <devdoc>
+ Provided for the sole purpose of rendering the delegate passed to the
+ matcher constructor if no friendly render lambda is provided.
+ </devdoc>
+ </member>
+ <member name="M:Moq.Match.Create``1(System.Predicate{``0})">
+ <summary>
+ Initializes the match with the condition that
+ will be checked in order to match invocation
+ values.
+ </summary><param name="condition">The condition to match against actual values.</param><remarks>
+ <seealso cref="T:Moq.Match`1"/>
+ </remarks>
+ </member>
+ <member name="M:Moq.Match.Create``1(System.Predicate{``0},System.Linq.Expressions.Expression{System.Func{``0}})">
+ <!-- No matching elements were found for the following include tag --><include file="Match.xdoc" path="docs/doc[@for="Match.Create{T}(condition,renderExpression"]/*"/>
+ </member>
+ <member name="M:Moq.Match.SetLastMatch``1(Moq.Match{``0})">
+ <devdoc>
+ This method is used to set an expression as the last matcher invoked,
+ which is used in the SetupSet to allow matchers in the prop = value
+ delegate expression. This delegate is executed in "fluent" mode in
+ order to capture the value being set, and construct the corresponding
+ methodcall.
+ This is also used in the MatcherFactory for each argument expression.
+ This method ensures that when we execute the delegate, we
+ also track the matcher that was invoked, so that when we create the
+ methodcall we build the expression using it, rather than the null/default
+ value returned from the actual invocation.
+ </devdoc>
+ </member>
+ <member name="T:Moq.Match`1">
+ <summary>
+ Allows creation custom value matchers that can be used on setups and verification,
+ completely replacing the built-in <see cref="T:Moq.It"/> class with your own argument
+ matching rules.
+ </summary><typeparam name="T">Type of the value to match.</typeparam><remarks>
+ The argument matching is used to determine whether a concrete
+ invocation in the mock matches a given setup. This
+ matching mechanism is fully extensible.
+ </remarks><example>
+ Creating a custom matcher is straightforward. You just need to create a method
+ that returns a value from a call to <see cref="M:Moq.Match.Create``1(System.Predicate{``0})"/> with
+ your matching condition and optional friendly render expression:
+ <code>
+ [Matcher]
+ public Order IsBigOrder()
+ {
+ return Match<Order>.Create(
+ o => o.GrandTotal >= 5000,
+ /* a friendly expression to render on failures */
+ () => IsBigOrder());
+ }
+ </code>
+ This method can be used in any mock setup invocation:
+ <code>
+ mock.Setup(m => m.Submit(IsBigOrder()).Throws<UnauthorizedAccessException>();
+ </code>
+ At runtime, Moq knows that the return value was a matcher (note that the method MUST be
+ annotated with the [Matcher] attribute in order to determine this) and
+ evaluates your predicate with the actual value passed into your predicate.
+ <para>
+ Another example might be a case where you want to match a lists of orders
+ that contains a particular one. You might create matcher like the following:
+ </para>
+ <code>
+ public static class Orders
+ {
+ [Matcher]
+ public static IEnumerable<Order> Contains(Order order)
+ {
+ return Match<IEnumerable<Order>>.Create(orders => orders.Contains(order));
+ }
+ }
+ </code>
+ Now we can invoke this static method instead of an argument in an
+ invocation:
+ <code>
+ var order = new Order { ... };
+ var mock = new Mock<IRepository<Order>>();
+
+ mock.Setup(x => x.Save(Orders.Contains(order)))
+ .Throws<ArgumentException>();
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.FluentMockContext">
+ <summary>
+ Tracks the current mock and interception context.
+ </summary>
+ </member>
+ <member name="P:Moq.FluentMockContext.IsActive">
+ <summary>
+ Having an active fluent mock context means that the invocation
+ is being performed in "trial" mode, just to gather the
+ target method and arguments that need to be matched later
+ when the actual invocation is made.
+ </summary>
+ </member>
+ <member name="T:Moq.MockDefaultValueProvider">
+ <summary>
+ A <see cref="T:Moq.IDefaultValueProvider"/> that returns an empty default value
+ for non-mockeable types, and mocks for all other types (interfaces and
+ non-sealed classes) that can be mocked.
+ </summary>
+ </member>
+ <member name="T:Moq.Mocks">
+ <summary>
+ Allows querying the universe of mocks for those that behave
+ according to the LINQ query specification.
+ </summary>
+ <devdoc>
+ This entry-point into Linq to Mocks is the only one in the root Moq
+ namespace to ease discovery. But to get all the mocking extension
+ methods on Object, a using of Moq.Linq must be done, so that the
+ polluting of the intellisense for all objects is an explicit opt-in.
+ </devdoc>
+ </member>
+ <member name="M:Moq.Mocks.Of``1">
+ <summary>
+ Access the universe of mocks of the given type, to retrieve those
+ that behave according to the LINQ query specification.
+ </summary>
+ <typeparam name="T">The type of the mocked object to query.</typeparam>
+ </member>
+ <member name="M:Moq.Mocks.Of``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Access the universe of mocks of the given type, to retrieve those
+ that behave according to the LINQ query specification.
+ </summary>
+ <param name="specification">The predicate with the setup expressions.</param>
+ <typeparam name="T">The type of the mocked object to query.</typeparam>
+ </member>
+ <member name="M:Moq.Mocks.OneOf``1">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.Mocks.OneOf``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <param name="specification">The predicate with the setup expressions.</param>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.Mocks.CreateMockQuery``1">
+ <summary>
+ Creates the mock query with the underlying queriable implementation.
+ </summary>
+ </member>
+ <member name="M:Moq.Mocks.CreateQueryable``1">
+ <summary>
+ Wraps the enumerator inside a queryable.
+ </summary>
+ </member>
+ <member name="M:Moq.Mocks.CreateMocks``1">
+ <summary>
+ Method that is turned into the actual call from .Query{T}, to
+ transform the queryable query into a normal enumerable query.
+ This method is never used directly by consumers.
+ </summary>
+ </member>
+ <member name="M:Moq.Mocks.SetPropery``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1)">
+ <summary>
+ Extension method used to support Linq-like setup properties that are not virtual but do have
+ a getter and a setter, thereby allowing the use of Linq to Mocks to quickly initialize Dtos too :)
+ </summary>
+ </member>
+ <member name="T:Moq.QueryableMockExtensions">
+ <summary>
+ Helper extensions that are used by the query translator.
+ </summary>
+ </member>
+ <member name="M:Moq.QueryableMockExtensions.FluentMock``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
+ <summary>
+ Retrieves a fluent mock from the given setup expression.
+ </summary>
+ </member>
+ <member name="T:Moq.Times">
+ <summary>
+ Defines the number of invocations allowed by a mocked method.
+ </summary>
+ </member>
+ <member name="M:Moq.Times.AtLeast(System.Int32)">
+ <summary>
+ Specifies that a mocked method should be invoked <paramref name="callCount"/> times as minimum.
+ </summary><param name="callCount">The minimun number of times.</param><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.AtLeastOnce">
+ <summary>
+ Specifies that a mocked method should be invoked one time as minimum.
+ </summary><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.AtMost(System.Int32)">
+ <summary>
+ Specifies that a mocked method should be invoked <paramref name="callCount"/> time as maximun.
+ </summary><param name="callCount">The maximun number of times.</param><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.AtMostOnce">
+ <summary>
+ Specifies that a mocked method should be invoked one time as maximun.
+ </summary><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Between(System.Int32,System.Int32,Moq.Range)">
+ <summary>
+ Specifies that a mocked method should be invoked between <paramref name="callCountFrom"/> and
+ <paramref name="callCountTo"/> times.
+ </summary><param name="callCountFrom">The minimun number of times.</param><param name="callCountTo">The maximun number of times.</param><param name="rangeKind">
+ The kind of range. See <see cref="T:Moq.Range"/>.
+ </param><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Exactly(System.Int32)">
+ <summary>
+ Specifies that a mocked method should be invoked exactly <paramref name="callCount"/> times.
+ </summary><param name="callCount">The times that a method or property can be called.</param><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Never">
+ <summary>
+ Specifies that a mocked method should not be invoked.
+ </summary><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Once">
+ <summary>
+ Specifies that a mocked method should be invoked exactly one time.
+ </summary><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Equals(System.Object)">
+ <summary>
+ Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
+ </summary><param name="obj">
+ The <see cref="T:System.Object"/> to compare with this instance.
+ </param><returns>
+ <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="M:Moq.Times.GetHashCode">
+ <summary>
+ Returns a hash code for this instance.
+ </summary><returns>
+ A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+ </returns>
+ </member>
+ <member name="M:Moq.Times.op_Equality(Moq.Times,Moq.Times)">
+ <summary>
+ Determines whether two specified <see cref="T:Moq.Times"/> objects have the same value.
+ </summary><param name="left">
+ The first <see cref="T:Moq.Times"/>.
+ </param><param name="right">
+ The second <see cref="T:Moq.Times"/>.
+ </param><returns>
+ <c>true</c> if the value of left is the same as the value of right; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="M:Moq.Times.op_Inequality(Moq.Times,Moq.Times)">
+ <summary>
+ Determines whether two specified <see cref="T:Moq.Times"/> objects have different values.
+ </summary><param name="left">
+ The first <see cref="T:Moq.Times"/>.
+ </param><param name="right">
+ The second <see cref="T:Moq.Times"/>.
+ </param><returns>
+ <c>true</c> if the value of left is different from the value of right; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ </members>
+</doc>
diff --git a/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Castle.Core.dll b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Castle.Core.dll Binary files differnew file mode 100755 index 0000000..a887ecd --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Castle.Core.dll diff --git a/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.dll b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.dll Binary files differnew file mode 100755 index 0000000..fb516c1 --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.dll diff --git a/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.pdb b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.pdb Binary files differnew file mode 100755 index 0000000..d33d394 --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.pdb diff --git a/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.xml b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.xml new file mode 100755 index 0000000..90efe10 --- /dev/null +++ b/SendGrid/packages/Moq.4.0.10827/lib/Silverlight4/Moq.Silverlight.xml @@ -0,0 +1,5101 @@ +<?xml version="1.0"?>
+<doc>
+ <assembly>
+ <name>Moq.Silverlight</name>
+ </assembly>
+ <members>
+ <member name="T:Moq.Mock`1">
+ <summary>
+ Provides a mock implementation of <typeparamref name="T"/>.
+ </summary><remarks>
+ Any interface type can be used for mocking, but for classes, only abstract and virtual members can be mocked.
+ <para>
+ The behavior of the mock with regards to the setups and the actual calls is determined
+ by the optional <see cref="T:Moq.MockBehavior"/> that can be passed to the <see cref="M:Moq.Mock`1.#ctor(Moq.MockBehavior)"/>
+ constructor.
+ </para>
+ </remarks><typeparam name="T">Type to mock, which can be an interface or a class.</typeparam><example group="overview" order="0">
+ The following example shows establishing setups with specific values
+ for method invocations:
+ <code>
+ // Arrange
+ var order = new Order(TALISKER, 50);
+ var mock = new Mock<IWarehouse>();
+
+ mock.Setup(x => x.HasInventory(TALISKER, 50)).Returns(true);
+
+ // Act
+ order.Fill(mock.Object);
+
+ // Assert
+ Assert.True(order.IsFilled);
+ </code>
+ The following example shows how to use the <see cref="T:Moq.It"/> class
+ to specify conditions for arguments instead of specific values:
+ <code>
+ // Arrange
+ var order = new Order(TALISKER, 50);
+ var mock = new Mock<IWarehouse>();
+
+ // shows how to expect a value within a range
+ mock.Setup(x => x.HasInventory(
+ It.IsAny<string>(),
+ It.IsInRange(0, 100, Range.Inclusive)))
+ .Returns(false);
+
+ // shows how to throw for unexpected calls.
+ mock.Setup(x => x.Remove(
+ It.IsAny<string>(),
+ It.IsAny<int>()))
+ .Throws(new InvalidOperationException());
+
+ // Act
+ order.Fill(mock.Object);
+
+ // Assert
+ Assert.False(order.IsFilled);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Mock">
+ <summary>
+ Base class for mocks and static helper class with methods that
+ apply to mocked objects, such as <see cref="M:Moq.Mock.Get``1(``0)"/> to
+ retrieve a <see cref="T:Moq.Mock`1"/> from an object instance.
+ </summary>
+ </member>
+ <member name="T:Moq.IHideObjectMembers">
+ <summary>
+ Helper interface used to hide the base <see cref="T:System.Object"/>
+ members from the fluent API to make it much cleaner
+ in Visual Studio intellisense.
+ </summary>
+ </member>
+ <member name="M:Moq.IHideObjectMembers.GetType">
+ <summary/>
+ </member>
+ <member name="M:Moq.IHideObjectMembers.GetHashCode">
+ <summary/>
+ </member>
+ <member name="M:Moq.IHideObjectMembers.ToString">
+ <summary/>
+ </member>
+ <member name="M:Moq.IHideObjectMembers.Equals(System.Object)">
+ <summary/>
+ </member>
+ <member name="M:Moq.Mock.Of``1">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.Mock.Of``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <param name="predicate">The predicate with the specification of how the mocked object should behave.</param>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.Mock.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:Moq.Mock"/> class.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.Get``1(``0)">
+ <summary>
+ Retrieves the mock object for the given object instance.
+ </summary><typeparam name="T">
+ Type of the mock to retrieve. Can be omitted as it's inferred
+ from the object instance passed in as the <paramref name="mocked"/> instance.
+ </typeparam><param name="mocked">The instance of the mocked object.</param><returns>The mock associated with the mocked object.</returns><exception cref="T:System.ArgumentException">
+ The received <paramref name="mocked"/> instance
+ was not created by Moq.
+ </exception><example group="advanced">
+ The following example shows how to add a new setup to an object
+ instance which is not the original <see cref="T:Moq.Mock`1"/> but rather
+ the object associated with it:
+ <code>
+ // Typed instance, not the mock, is retrieved from some test API.
+ HttpContextBase context = GetMockContext();
+
+ // context.Request is the typed object from the "real" API
+ // so in order to add a setup to it, we need to get
+ // the mock that "owns" it
+ Mock<HttpRequestBase> request = Mock.Get(context.Request);
+ mock.Setup(req => req.AppRelativeCurrentExecutionFilePath)
+ .Returns(tempUrl);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock.OnGetObject">
+ <summary>
+ Returns the mocked object value.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.Verify">
+ <summary>
+ Verifies that all verifiable expectations have been met.
+ </summary><example group="verification">
+ This example sets up an expectation and marks it as verifiable. After
+ the mock is used, a <c>Verify()</c> call is issued on the mock
+ to ensure the method in the setup was invoked:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ this.Setup(x => x.HasInventory(TALISKER, 50)).Verifiable().Returns(true);
+ ...
+ // other test code
+ ...
+ // Will throw if the test code has didn't call HasInventory.
+ this.Verify();
+ </code>
+ </example><exception cref="T:Moq.MockException">Not all verifiable expectations were met.</exception>
+ </member>
+ <member name="M:Moq.Mock.VerifyAll">
+ <summary>
+ Verifies all expectations regardless of whether they have
+ been flagged as verifiable.
+ </summary><example group="verification">
+ This example sets up an expectation without marking it as verifiable. After
+ the mock is used, a <see cref="M:Moq.Mock.VerifyAll"/> call is issued on the mock
+ to ensure that all expectations are met:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ this.Setup(x => x.HasInventory(TALISKER, 50)).Returns(true);
+ ...
+ // other test code
+ ...
+ // Will throw if the test code has didn't call HasInventory, even
+ // that expectation was not marked as verifiable.
+ this.VerifyAll();
+ </code>
+ </example><exception cref="T:Moq.MockException">At least one expectation was not met.</exception>
+ </member>
+ <member name="M:Moq.Mock.GetInterceptor(System.Linq.Expressions.Expression,Moq.Mock)">
+ <summary>
+ Gets the interceptor target for the given expression and root mock,
+ building the intermediate hierarchy of mock objects if necessary.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.DoRaise(System.Reflection.EventInfo,System.EventArgs)">
+ <summary>
+ Raises the associated event with the given
+ event argument data.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.DoRaise(System.Reflection.EventInfo,System.Object[])">
+ <summary>
+ Raises the associated event with the given
+ event argument data.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock.As``1">
+ <summary>
+ Adds an interface implementation to the mock,
+ allowing setups to be specified for it.
+ </summary><remarks>
+ This method can only be called before the first use
+ of the mock <see cref="P:Moq.Mock.Object"/> property, at which
+ point the runtime type has already been generated
+ and no more interfaces can be added to it.
+ <para>
+ Also, <typeparamref name="TInterface"/> must be an
+ interface and not a class, which must be specified
+ when creating the mock instead.
+ </para>
+ </remarks><exception cref="T:System.InvalidOperationException">
+ The mock type
+ has already been generated by accessing the <see cref="P:Moq.Mock.Object"/> property.
+ </exception><exception cref="T:System.ArgumentException">
+ The <typeparamref name="TInterface"/> specified
+ is not an interface.
+ </exception><example>
+ The following example creates a mock for the main interface
+ and later adds <see cref="T:System.IDisposable"/> to it to verify
+ it's called by the consumer code:
+ <code>
+ var mock = new Mock<IProcessor>();
+ mock.Setup(x => x.Execute("ping"));
+
+ // add IDisposable interface
+ var disposable = mock.As<IDisposable>();
+ disposable.Setup(d => d.Dispose()).Verifiable();
+ </code>
+ </example><typeparam name="TInterface">Type of interface to cast the mock to.</typeparam>
+ </member>
+ <member name="M:Moq.Mock.SetReturnsDefault``1(``0)">
+ <!-- No matching elements were found for the following include tag --><include file="Mock.Generic.xdoc" path="docs/doc[@for="Mock.SetReturnDefault{TReturn}"]/*"/>
+ </member>
+ <member name="P:Moq.Mock.Behavior">
+ <summary>
+ Behavior of the mock, according to the value set in the constructor.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.CallBase">
+ <summary>
+ Whether the base member virtual implementation will be called
+ for mocked classes if no setup is matched. Defaults to <see langword="false"/>.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.DefaultValue">
+ <summary>
+ Specifies the behavior to use when returning default values for
+ unexpected invocations on loose mocks.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.Object">
+ <summary>
+ Gets the mocked object instance.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.MockedType">
+ <summary>
+ Retrieves the type of the mocked object, its generic type argument.
+ This is used in the auto-mocking of hierarchy access.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.DefaultValueProvider">
+ <summary>
+ Specifies the class that will determine the default
+ value to return when invocations are made that
+ have no setups and need to return a default
+ value (for loose mocks).
+ </summary>
+ </member>
+ <member name="P:Moq.Mock.ImplementedInterfaces">
+ <summary>
+ Exposes the list of extra interfaces implemented by the mock.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor(System.Boolean)">
+ <summary>
+ Ctor invoked by AsTInterface exclusively.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor">
+ <summary>
+ Initializes an instance of the mock with <see cref="F:Moq.MockBehavior.Default">default behavior</see>.
+ </summary><example>
+ <code>var mock = new Mock<IFormatProvider>();</code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor(System.Object[])">
+ <summary>
+ Initializes an instance of the mock with <see cref="F:Moq.MockBehavior.Default">default behavior</see> and with
+ the given constructor arguments for the class. (Only valid when <typeparamref name="T"/> is a class)
+ </summary><remarks>
+ The mock will try to find the best match constructor given the constructor arguments, and invoke that
+ to initialize the instance. This applies only for classes, not interfaces.
+ </remarks><example>
+ <code>var mock = new Mock<MyProvider>(someArgument, 25);</code>
+ </example><param name="args">Optional constructor arguments if the mocked type is a class.</param>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor(Moq.MockBehavior)">
+ <summary>
+ Initializes an instance of the mock with the specified <see cref="T:Moq.MockBehavior">behavior</see>.
+ </summary><example>
+ <code>var mock = new Mock<IFormatProvider>(MockBehavior.Relaxed);</code>
+ </example><param name="behavior">Behavior of the mock.</param>
+ </member>
+ <member name="M:Moq.Mock`1.#ctor(Moq.MockBehavior,System.Object[])">
+ <summary>
+ Initializes an instance of the mock with a specific <see cref="T:Moq.MockBehavior">behavior</see> with
+ the given constructor arguments for the class.
+ </summary><remarks>
+ The mock will try to find the best match constructor given the constructor arguments, and invoke that
+ to initialize the instance. This applies only to classes, not interfaces.
+ </remarks><example>
+ <code>var mock = new Mock<MyProvider>(someArgument, 25);</code>
+ </example><param name="behavior">Behavior of the mock.</param><param name="args">Optional constructor arguments if the mocked type is a class.</param>
+ </member>
+ <member name="M:Moq.Mock`1.OnGetObject">
+ <summary>
+ Returns the mocked object value.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.Setup(System.Linq.Expressions.Expression{System.Action{`0}})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a void method.
+ </summary><remarks>
+ If more than one setup is specified for the same method or property,
+ the latest one wins and is the one that will be executed.
+ </remarks><param name="expression">Lambda expression that specifies the expected method invocation.</param><example group="setups">
+ <code>
+ var mock = new Mock<IProcessor>();
+ mock.Setup(x => x.Execute("ping"));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.Setup``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a value returning method.
+ </summary><typeparam name="TResult">Type of the return value. Typically omitted as it can be inferred from the expression.</typeparam><remarks>
+ If more than one setup is specified for the same method or property,
+ the latest one wins and is the one that will be executed.
+ </remarks><param name="expression">Lambda expression that specifies the method invocation.</param><example group="setups">
+ <code>
+ mock.Setup(x => x.HasInventory("Talisker", 50)).Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a property getter.
+ </summary><remarks>
+ If more than one setup is set for the same property getter,
+ the latest one wins and is the one that will be executed.
+ </remarks><typeparam name="TProperty">Type of the property. Typically omitted as it can be inferred from the expression.</typeparam><param name="expression">Lambda expression that specifies the property getter.</param><example group="setups">
+ <code>
+ mock.SetupGet(x => x.Suspended)
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupSet``1(System.Action{`0})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a property setter.
+ </summary><remarks>
+ If more than one setup is set for the same property setter,
+ the latest one wins and is the one that will be executed.
+ <para>
+ This overloads allows the use of a callback already
+ typed for the property type.
+ </para>
+ </remarks><typeparam name="TProperty">Type of the property. Typically omitted as it can be inferred from the expression.</typeparam><param name="setterExpression">The Lambda expression that sets a property to a value.</param><example group="setups">
+ <code>
+ mock.SetupSet(x => x.Suspended = true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupSet(System.Action{`0})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a property setter.
+ </summary><remarks>
+ If more than one setup is set for the same property setter,
+ the latest one wins and is the one that will be executed.
+ </remarks><param name="setterExpression">Lambda expression that sets a property to a value.</param><example group="setups">
+ <code>
+ mock.SetupSet(x => x.Suspended = true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupProperty``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Specifies that the given property should have "property behavior",
+ meaning that setting its value will cause it to be saved and
+ later returned when the property is requested. (this is also
+ known as "stubbing").
+ </summary><typeparam name="TProperty">
+ Type of the property, inferred from the property
+ expression (does not need to be specified).
+ </typeparam><param name="property">Property expression to stub.</param><example>
+ If you have an interface with an int property <c>Value</c>, you might
+ stub it using the following straightforward call:
+ <code>
+ var mock = new Mock<IHaveValue>();
+ mock.Stub(v => v.Value);
+ </code>
+ After the <c>Stub</c> call has been issued, setting and
+ retrieving the object value will behave as expected:
+ <code>
+ IHaveValue v = mock.Object;
+
+ v.Value = 5;
+ Assert.Equal(5, v.Value);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupProperty``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},``0)">
+ <summary>
+ Specifies that the given property should have "property behavior",
+ meaning that setting its value will cause it to be saved and
+ later returned when the property is requested. This overload
+ allows setting the initial value for the property. (this is also
+ known as "stubbing").
+ </summary><typeparam name="TProperty">
+ Type of the property, inferred from the property
+ expression (does not need to be specified).
+ </typeparam><param name="property">Property expression to stub.</param><param name="initialValue">Initial value for the property.</param><example>
+ If you have an interface with an int property <c>Value</c>, you might
+ stub it using the following straightforward call:
+ <code>
+ var mock = new Mock<IHaveValue>();
+ mock.SetupProperty(v => v.Value, 5);
+ </code>
+ After the <c>SetupProperty</c> call has been issued, setting and
+ retrieving the object value will behave as expected:
+ <code>
+ IHaveValue v = mock.Object;
+ // Initial value was stored
+ Assert.Equal(5, v.Value);
+
+ // New value set which changes the initial value
+ v.Value = 6;
+ Assert.Equal(6, v.Value);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.SetupAllProperties">
+ <summary>
+ Specifies that the all properties on the mock should have "property behavior",
+ meaning that setting its value will cause it to be saved and
+ later returned when the property is requested. (this is also
+ known as "stubbing"). The default value for each property will be the
+ one generated as specified by the <see cref="P:Moq.Mock.DefaultValue"/> property for the mock.
+ </summary><remarks>
+ If the mock <see cref="P:Moq.Mock.DefaultValue"/> is set to <see cref="F:Moq.DefaultValue.Mock"/>,
+ the mocked default values will also get all properties setup recursively.
+ </remarks>
+ </member>
+ <member name="M:Moq.Mock`1.When(System.Func{System.Boolean})">
+ <!-- No matching elements were found for the following include tag --><include file="Mock.Generic.xdoc" path="docs/doc[@for="Mock{T}.When"]/*"/>
+ </member>
+ <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}})">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock. Use
+ in conjuntion with the default <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><example group="verification">
+ This example assumes that the mock has been used, and later we want to verify that a given
+ invocation with specific parameters was performed:
+ <code>
+ var mock = new Mock<IProcessor>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't call Execute with a "ping" string argument.
+ mock.Verify(proc => proc.Execute("ping"));
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}},Moq.Times)">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock. Use
+ in conjuntion with the default <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}},System.String)">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock,
+ specifying a failure error message. Use in conjuntion with the default
+ <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><example group="verification">
+ This example assumes that the mock has been used, and later we want to verify that a given
+ invocation with specific parameters was performed:
+ <code>
+ var mock = new Mock<IProcessor>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't call Execute with a "ping" string argument.
+ mock.Verify(proc => proc.Execute("ping"));
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Verify(System.Linq.Expressions.Expression{System.Action{`0}},Moq.Times,System.String)">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock,
+ specifying a failure error message. Use in conjuntion with the default
+ <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param><param name="failMessage">Message to show if verification fails.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Verifies that a specific invocation matching the given expression was performed on the mock. Use
+ in conjuntion with the default <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><example group="verification">
+ This example assumes that the mock has been used, and later we want to verify that a given
+ invocation with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't call HasInventory.
+ mock.Verify(warehouse => warehouse.HasInventory(TALISKER, 50));
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times)">
+ <summary>
+ Verifies that a specific invocation matching the given
+ expression was performed on the mock. Use in conjuntion
+ with the default <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},System.String)">
+ <summary>
+ Verifies that a specific invocation matching the given
+ expression was performed on the mock, specifying a failure
+ error message.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't call HasInventory.
+ mock.Verify(warehouse => warehouse.HasInventory(TALISKER, 50), "When filling orders, inventory has to be checked");
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.Verify``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times,System.String)">
+ <summary>
+ Verifies that a specific invocation matching the given
+ expression was performed on the mock, specifying a failure
+ error message.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="expression">Expression to verify.</param><param name="times">The number of times a method is allowed to be called.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TResult">Type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Verifies that a property was read on the mock.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given property
+ was retrieved from it:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't retrieve the IsClosed property.
+ mock.VerifyGet(warehouse => warehouse.IsClosed);
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><typeparam name="TProperty">
+ Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.
+ </typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times)">
+ <summary>
+ Verifies that a property was read on the mock.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="times">The number of times a method is allowed to be called.</param><param name="expression">Expression to verify.</param><typeparam name="TProperty">
+ Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.
+ </typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},System.String)">
+ <summary>
+ Verifies that a property was read on the mock, specifying a failure
+ error message.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given property
+ was retrieved from it:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't retrieve the IsClosed property.
+ mock.VerifyGet(warehouse => warehouse.IsClosed);
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TProperty">
+ Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.
+ </typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifyGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},Moq.Times,System.String)">
+ <summary>
+ Verifies that a property was read on the mock, specifying a failure
+ error message.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="times">The number of times a method is allowed to be called.</param><param name="expression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param><typeparam name="TProperty">
+ Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.
+ </typeparam>
+ </member>
+ <member name="M:Moq.Mock`1.VerifySet(System.Action{`0})">
+ <summary>
+ Verifies that a property was set on the mock.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given property
+ was set on it:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed = true);
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="setterExpression">Expression to verify.</param>
+ </member>
+ <member name="M:Moq.Mock`1.VerifySet(System.Action{`0},Moq.Times)">
+ <summary>
+ Verifies that a property was set on the mock.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="times">The number of times a method is allowed to be called.</param><param name="setterExpression">Expression to verify.</param>
+ </member>
+ <member name="M:Moq.Mock`1.VerifySet(System.Action{`0},System.String)">
+ <summary>
+ Verifies that a property was set on the mock, specifying
+ a failure message.
+ </summary><example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given property
+ was set on it:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed = true, "Warehouse should always be closed after the action");
+ </code>
+ </example><exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception><param name="setterExpression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param>
+ </member>
+ <member name="M:Moq.Mock`1.VerifySet(System.Action{`0},Moq.Times,System.String)">
+ <summary>
+ Verifies that a property was set on the mock, specifying
+ a failure message.
+ </summary><exception cref="T:Moq.MockException">
+ The invocation was not call the times specified by
+ <paramref name="times"/>.
+ </exception><param name="times">The number of times a method is allowed to be called.</param><param name="setterExpression">Expression to verify.</param><param name="failMessage">Message to show if verification fails.</param>
+ </member>
+ <member name="M:Moq.Mock`1.Raise(System.Action{`0},System.EventArgs)">
+ <summary>
+ Raises the event referenced in <paramref name="eventExpression"/> using
+ the given <paramref name="args"/> argument.
+ </summary><exception cref="T:System.ArgumentException">
+ The <paramref name="args"/> argument is
+ invalid for the target event invocation, or the <paramref name="eventExpression"/> is
+ not an event attach or detach expression.
+ </exception><example>
+ The following example shows how to raise a <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event:
+ <code>
+ var mock = new Mock<IViewModel>();
+
+ mock.Raise(x => x.PropertyChanged -= null, new PropertyChangedEventArgs("Name"));
+ </code>
+ </example><example>
+ This example shows how to invoke an event with a custom event arguments
+ class in a view that will cause its corresponding presenter to
+ react by changing its state:
+ <code>
+ var mockView = new Mock<IOrdersView>();
+ var presenter = new OrdersPresenter(mockView.Object);
+
+ // Check that the presenter has no selection by default
+ Assert.Null(presenter.SelectedOrder);
+
+ // Raise the event with a specific arguments data
+ mockView.Raise(v => v.SelectionChanged += null, new OrderEventArgs { Order = new Order("moq", 500) });
+
+ // Now the presenter reacted to the event, and we have a selected order
+ Assert.NotNull(presenter.SelectedOrder);
+ Assert.Equal("moq", presenter.SelectedOrder.ProductName);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.Raise(System.Action{`0},System.Object[])">
+ <summary>
+ Raises the event referenced in <paramref name="eventExpression"/> using
+ the given <paramref name="args"/> argument for a non-EventHandler typed event.
+ </summary><exception cref="T:System.ArgumentException">
+ The <paramref name="args"/> arguments are
+ invalid for the target event invocation, or the <paramref name="eventExpression"/> is
+ not an event attach or detach expression.
+ </exception><example>
+ The following example shows how to raise a custom event that does not adhere to
+ the standard <c>EventHandler</c>:
+ <code>
+ var mock = new Mock<IViewModel>();
+
+ mock.Raise(x => x.MyEvent -= null, "Name", bool, 25);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Mock`1.Expect(System.Linq.Expressions.Expression{System.Action{`0}})">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.Expect``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.ExpectGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.ExpectSet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.Mock`1.ExpectSet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}},``0)">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="P:Moq.Mock`1.Object">
+ <summary>
+ Exposes the mocked object instance.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.ISetupConditionResult`1">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.Setup(System.Linq.Expressions.Expression{System.Action{`0}})">
+ <summary>
+ The expectation will be considered only in the former condition.
+ </summary>
+ <param name="expression"></param>
+ <returns></returns>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.Setup``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ The expectation will be considered only in the former condition.
+ </summary>
+ <typeparam name="TResult"></typeparam>
+ <param name="expression"></param>
+ <returns></returns>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.SetupGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
+ <summary>
+ Setups the get.
+ </summary>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ <param name="expression">The expression.</param>
+ <returns></returns>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.SetupSet``1(System.Action{`0})">
+ <summary>
+ Setups the set.
+ </summary>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ <param name="setterExpression">The setter expression.</param>
+ <returns></returns>
+ </member>
+ <member name="M:Moq.Language.ISetupConditionResult`1.SetupSet(System.Action{`0})">
+ <summary>
+ Setups the set.
+ </summary>
+ <param name="setterExpression">The setter expression.</param>
+ <returns></returns>
+ </member>
+ <member name="T:Moq.DefaultValue">
+ <summary>
+ Determines the way default values are generated
+ calculated for loose mocks.
+ </summary>
+ </member>
+ <member name="F:Moq.DefaultValue.Empty">
+ <summary>
+ Default behavior, which generates empty values for
+ value types (i.e. default(int)), empty array and
+ enumerables, and nulls for all other reference types.
+ </summary>
+ </member>
+ <member name="F:Moq.DefaultValue.Mock">
+ <summary>
+ Whenever the default value generated by <see cref="F:Moq.DefaultValue.Empty"/>
+ is null, replaces this value with a mock (if the type
+ can be mocked).
+ </summary>
+ <remarks>
+ For sealed classes, a null value will be generated.
+ </remarks>
+ </member>
+ <member name="T:Moq.EmptyDefaultValueProvider">
+ <summary>
+ A <see cref="T:Moq.IDefaultValueProvider"/> that returns an empty default value
+ for invocations that do not have setups or return values, with loose mocks.
+ This is the default behavior for a mock.
+ </summary>
+ </member>
+ <member name="T:Moq.IDefaultValueProvider">
+ <summary>
+ Interface to be implemented by classes that determine the
+ default value of non-expected invocations.
+ </summary>
+ </member>
+ <member name="M:Moq.IDefaultValueProvider.DefineDefault``1(``0)">
+ <summary>
+ Defines the default value to return in all the methods returning <typeparamref name="T"/>.
+ </summary><typeparam name="T">The type of the return value.</typeparam><param name="value">The value to set as default.</param>
+ </member>
+ <member name="M:Moq.IDefaultValueProvider.ProvideDefault(System.Reflection.MethodInfo)">
+ <summary>
+ Provides a value for the given member and arguments.
+ </summary><param name="member">
+ The member to provide a default value for.
+ </param>
+ </member>
+ <member name="T:Moq.Evaluator">
+ <summary>
+ Provides partial evaluation of subtrees, whenever they can be evaluated locally.
+ </summary>
+ <author>Matt Warren: http://blogs.msdn.com/mattwar</author>
+ <contributor>Documented by InSTEDD: http://www.instedd.org</contributor>
+ </member>
+ <member name="M:Moq.Evaluator.PartialEval(System.Linq.Expressions.Expression,System.Func{System.Linq.Expressions.Expression,System.Boolean})">
+ <summary>
+ Performs evaluation and replacement of independent sub-trees
+ </summary>
+ <param name="expression">The root of the expression tree.</param>
+ <param name="fnCanBeEvaluated">A function that decides whether a given expression
+ node can be part of the local function.</param>
+ <returns>A new tree with sub-trees evaluated and replaced.</returns>
+ </member>
+ <member name="M:Moq.Evaluator.PartialEval(System.Linq.Expressions.Expression)">
+ <summary>
+ Performs evaluation and replacement of independent sub-trees
+ </summary>
+ <param name="expression">The root of the expression tree.</param>
+ <returns>A new tree with sub-trees evaluated and replaced.</returns>
+ </member>
+ <member name="T:Moq.Evaluator.SubtreeEvaluator">
+ <summary>
+ Evaluates and replaces sub-trees when first candidate is reached (top-down)
+ </summary>
+ </member>
+ <member name="T:Moq.Evaluator.Nominator">
+ <summary>
+ Performs bottom-up analysis to determine which nodes can possibly
+ be part of an evaluated sub-tree.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.ToLambda(System.Linq.Expressions.Expression)">
+ <summary>
+ Casts the expression to a lambda expression, removing
+ a cast if there's any.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.ToMethodCall(System.Linq.Expressions.LambdaExpression)">
+ <summary>
+ Casts the body of the lambda expression to a <see cref="T:System.Linq.Expressions.MethodCallExpression"/>.
+ </summary>
+ <exception cref="T:System.ArgumentException">If the body is not a method call.</exception>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.ToPropertyInfo(System.Linq.Expressions.LambdaExpression)">
+ <summary>
+ Converts the body of the lambda expression into the <see cref="T:System.Reflection.PropertyInfo"/> referenced by it.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.IsProperty(System.Linq.Expressions.LambdaExpression)">
+ <summary>
+ Checks whether the body of the lambda expression is a property access.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.IsProperty(System.Linq.Expressions.Expression)">
+ <summary>
+ Checks whether the expression is a property access.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.IsPropertyIndexer(System.Linq.Expressions.LambdaExpression)">
+ <summary>
+ Checks whether the body of the lambda expression is a property indexer, which is true
+ when the expression is an <see cref="T:System.Linq.Expressions.MethodCallExpression"/> whose
+ <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> has <see cref="P:System.Reflection.MethodBase.IsSpecialName"/>
+ equal to <see langword="true"/>.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.IsPropertyIndexer(System.Linq.Expressions.Expression)">
+ <summary>
+ Checks whether the expression is a property indexer, which is true
+ when the expression is an <see cref="T:System.Linq.Expressions.MethodCallExpression"/> whose
+ <see cref="P:System.Linq.Expressions.MethodCallExpression.Method"/> has <see cref="P:System.Reflection.MethodBase.IsSpecialName"/>
+ equal to <see langword="true"/>.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.CastTo``1(System.Linq.Expressions.Expression)">
+ <summary>
+ Creates an expression that casts the given expression to the <typeparamref name="T"/>
+ type.
+ </summary>
+ </member>
+ <member name="M:Moq.ExpressionExtensions.ToStringFixed(System.Linq.Expressions.Expression)">
+ <devdoc>
+ TODO: remove this code when https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=331583
+ is fixed.
+ </devdoc>
+ </member>
+ <member name="T:Moq.ExpressionStringBuilder">
+ <summary>
+ The intention of <see cref="T:Moq.ExpressionStringBuilder"/> is to create a more readable
+ string representation for the failure message.
+ </summary>
+ </member>
+ <member name="T:Moq.FluentMockContext">
+ <summary>
+ Tracks the current mock and interception context.
+ </summary>
+ </member>
+ <member name="P:Moq.FluentMockContext.IsActive">
+ <summary>
+ Having an active fluent mock context means that the invocation
+ is being performed in "trial" mode, just to gather the
+ target method and arguments that need to be matched later
+ when the actual invocation is made.
+ </summary>
+ </member>
+ <member name="M:Moq.Guard.NotNull``1(System.Linq.Expressions.Expression{System.Func{``0}},``0)">
+ <summary>
+ Ensures the given <paramref name="value"/> is not null.
+ Throws <see cref="T:System.ArgumentNullException"/> otherwise.
+ </summary>
+ </member>
+ <member name="M:Moq.Guard.NotNullOrEmpty(System.Linq.Expressions.Expression{System.Func{System.String}},System.String)">
+ <summary>
+ Ensures the given string <paramref name="value"/> is not null or empty.
+ Throws <see cref="T:System.ArgumentNullException"/> in the first case, or
+ <see cref="T:System.ArgumentException"/> in the latter.
+ </summary>
+ </member>
+ <member name="M:Moq.Guard.NotOutOfRangeInclusive``1(System.Linq.Expressions.Expression{System.Func{``0}},``0,``0,``0)">
+ <summary>
+ Checks an argument to ensure it is in the specified range including the edges.
+ </summary>
+ <typeparam name="T">Type of the argument to check, it must be an <see cref="T:System.IComparable"/> type.
+ </typeparam>
+ <param name="reference">The expression containing the name of the argument.</param>
+ <param name="value">The argument value to check.</param>
+ <param name="from">The minimun allowed value for the argument.</param>
+ <param name="to">The maximun allowed value for the argument.</param>
+ </member>
+ <member name="M:Moq.Guard.NotOutOfRangeExclusive``1(System.Linq.Expressions.Expression{System.Func{``0}},``0,``0,``0)">
+ <summary>
+ Checks an argument to ensure it is in the specified range excluding the edges.
+ </summary>
+ <typeparam name="T">Type of the argument to check, it must be an <see cref="T:System.IComparable"/> type.
+ </typeparam>
+ <param name="reference">The expression containing the name of the argument.</param>
+ <param name="value">The argument value to check.</param>
+ <param name="from">The minimun allowed value for the argument.</param>
+ <param name="to">The maximun allowed value for the argument.</param>
+ </member>
+ <member name="T:Moq.IMocked`1">
+ <summary>
+ Implemented by all generated mock object instances.
+ </summary>
+ </member>
+ <member name="T:Moq.IMocked">
+ <summary>
+ Implemented by all generated mock object instances.
+ </summary>
+ </member>
+ <member name="P:Moq.IMocked.Mock">
+ <summary>
+ Reference the Mock that contains this as the <c>mock.Object</c> value.
+ </summary>
+ </member>
+ <member name="P:Moq.IMocked`1.Mock">
+ <summary>
+ Reference the Mock that contains this as the <c>mock.Object</c> value.
+ </summary>
+ </member>
+ <member name="T:Moq.Interceptor">
+ <summary>
+ Implements the actual interception and method invocation for
+ all mocks.
+ </summary>
+ </member>
+ <member name="M:Moq.Interceptor.GetEventFromName(System.String)">
+ <summary>
+ Get an eventInfo for a given event name. Search type ancestors depth first if necessary.
+ </summary>
+ <param name="eventName">Name of the event, with the set_ or get_ prefix already removed</param>
+ </member>
+ <member name="M:Moq.Interceptor.GetAncestorTypes(System.Type)">
+ <summary>
+ Given a type return all of its ancestors, both types and interfaces.
+ </summary>
+ <param name="initialType">The type to find immediate ancestors of</param>
+ </member>
+ <member name="T:Moq.It">
+ <summary>
+ Allows the specification of a matching condition for an
+ argument in a method invocation, rather than a specific
+ argument value. "It" refers to the argument being matched.
+ </summary><remarks>
+ This class allows the setup to match a method invocation
+ with an arbitrary value, with a value in a specified range, or
+ even one that matches a given predicate.
+ </remarks>
+ </member>
+ <member name="M:Moq.It.IsAny``1">
+ <summary>
+ Matches any value of the given <typeparamref name="TValue"/> type.
+ </summary><remarks>
+ Typically used when the actual argument value for a method
+ call is not relevant.
+ </remarks><example>
+ <code>
+ // Throws an exception for a call to Remove with any string value.
+ mock.Setup(x => x.Remove(It.IsAny<string>())).Throws(new InvalidOperationException());
+ </code>
+ </example><typeparam name="TValue">Type of the value.</typeparam>
+ </member>
+ <member name="M:Moq.It.Is``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Matches any value that satisfies the given predicate.
+ </summary><typeparam name="TValue">Type of the argument to check.</typeparam><param name="match">The predicate used to match the method argument.</param><remarks>
+ Allows the specification of a predicate to perform matching
+ of method call arguments.
+ </remarks><example>
+ This example shows how to return the value <c>1</c> whenever the argument to the
+ <c>Do</c> method is an even number.
+ <code>
+ mock.Setup(x => x.Do(It.Is<int>(i => i % 2 == 0)))
+ .Returns(1);
+ </code>
+ This example shows how to throw an exception if the argument to the
+ method is a negative number:
+ <code>
+ mock.Setup(x => x.GetUser(It.Is<int>(i => i < 0)))
+ .Throws(new ArgumentException());
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.It.IsInRange``1(``0,``0,Moq.Range)">
+ <summary>
+ Matches any value that is in the range specified.
+ </summary><typeparam name="TValue">Type of the argument to check.</typeparam><param name="from">The lower bound of the range.</param><param name="to">The upper bound of the range.</param><param name="rangeKind">
+ The kind of range. See <see cref="T:Moq.Range"/>.
+ </param><example>
+ The following example shows how to expect a method call
+ with an integer argument within the 0..100 range.
+ <code>
+ mock.Setup(x => x.HasInventory(
+ It.IsAny<string>(),
+ It.IsInRange(0, 100, Range.Inclusive)))
+ .Returns(false);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.It.IsRegex(System.String)">
+ <summary>
+ Matches a string argument if it matches the given regular expression pattern.
+ </summary><param name="regex">The pattern to use to match the string argument value.</param><example>
+ The following example shows how to expect a call to a method where the
+ string argument matches the given regular expression:
+ <code>
+ mock.Setup(x => x.Check(It.IsRegex("[a-z]+"))).Returns(1);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.It.IsRegex(System.String,System.Text.RegularExpressions.RegexOptions)">
+ <summary>
+ Matches a string argument if it matches the given regular expression pattern.
+ </summary><param name="regex">The pattern to use to match the string argument value.</param><param name="options">The options used to interpret the pattern.</param><example>
+ The following example shows how to expect a call to a method where the
+ string argument matches the given regular expression, in a case insensitive way:
+ <code>
+ mock.Setup(x => x.Check(It.IsRegex("[a-z]+", RegexOptions.IgnoreCase))).Returns(1);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.IReturnsResult`1">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.ICallback">
+ <summary>
+ Defines the <c>Callback</c> verb and overloads.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``2(System.Action{``0,``1})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2) => Console.WriteLine(arg1 + arg2));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``3(System.Action{``0,``1,``2})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3) => Console.WriteLine(arg1 + arg2 + arg3));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``4(System.Action{``0,``1,``2,``3})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4) => Console.WriteLine(arg1 + arg2 + arg3 + arg4));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``5(System.Action{``0,``1,``2,``3,``4})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``6(System.Action{``0,``1,``2,``3,``4,``5})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``7(System.Action{``0,``1,``2,``3,``4,``5,``6})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``8(System.Action{``0,``1,``2,``3,``4,``5,``6,``7})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``9(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``10(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``11(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``12(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``13(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``14(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``15(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``16(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <typeparam name="T16">The type of the sixteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.ICallbackResult"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15, string arg16) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15 + arg16));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback(System.Action)">
+ <summary>
+ Specifies a callback to invoke when the method is called.
+ </summary>
+ <param name="action">The callback method to invoke.</param>
+ <example>
+ The following example specifies a callback to set a boolean
+ value that can be used later:
+ <code>
+ var called = false;
+ mock.Setup(x => x.Execute())
+ .Callback(() => called = true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback.Callback``1(System.Action{``0})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T">The argument type of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <example>
+ Invokes the given callback with the concrete invocation argument value.
+ <para>
+ Notice how the specific string argument is retrieved by simply declaring
+ it as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(It.IsAny<string>()))
+ .Callback((string command) => Console.WriteLine(command));
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.IOccurrence">
+ <summary>
+ Defines occurrence members to constraint setups.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.IOccurrence.AtMostOnce">
+ <summary>
+ The expected invocation can happen at most once.
+ </summary>
+ <example>
+ <code>
+ var mock = new Mock<ICommand>();
+ mock.Setup(foo => foo.Execute("ping"))
+ .AtMostOnce();
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IOccurrence.AtMost(System.Int32)">
+ <summary>
+ The expected invocation can happen at most specified number of times.
+ </summary>
+ <param name="callCount">The number of times to accept calls.</param>
+ <example>
+ <code>
+ var mock = new Mock<ICommand>();
+ mock.Setup(foo => foo.Execute("ping"))
+ .AtMost( 5 );
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.IRaise`1">
+ <summary>
+ Defines the <c>Raises</c> verb.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)">
+ <summary>
+ Specifies the event that will be raised
+ when the setup is met.
+ </summary>
+ <param name="eventExpression">An expression that represents an event attach or detach action.</param>
+ <param name="args">The event arguments to pass for the raised event.</param>
+ <example>
+ The following example shows how to raise an event when
+ the setup is met:
+ <code>
+ var mock = new Mock<IContainer>();
+
+ mock.Setup(add => add.Add(It.IsAny<string>(), It.IsAny<object>()))
+ .Raises(add => add.Added += null, EventArgs.Empty);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.Func{System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised
+ when the setup is matched.
+ </summary>
+ <param name="eventExpression">An expression that represents an event attach or detach action.</param>
+ <param name="func">A function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.Object[])">
+ <summary>
+ Specifies the custom event that will be raised
+ when the setup is matched.
+ </summary>
+ <param name="eventExpression">An expression that represents an event attach or detach action.</param>
+ <param name="args">The arguments to pass to the custom delegate (non EventHandler-compatible).</param>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``1(System.Action{`0},System.Func{``0,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``2(System.Action{`0},System.Func{``0,``1,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``3(System.Action{`0},System.Func{``0,``1,``2,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``4(System.Action{`0},System.Func{``0,``1,``2,``3,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``5(System.Action{`0},System.Func{``0,``1,``2,``3,``4,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``6(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``7(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``8(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``9(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``10(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``11(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``12(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``13(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``14(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``15(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="M:Moq.Language.IRaise`1.Raises``16(System.Action{`0},System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15,System.EventArgs})">
+ <summary>
+ Specifies the event that will be raised when the setup is matched.
+ </summary>
+ <param name="eventExpression">The expression that represents an event attach or detach action.</param>
+ <param name="func">The function that will build the <see cref="T:System.EventArgs"/>
+ to pass when raising the event.</param>
+ <typeparam name="T1">The type of the first argument received by the expected invocation.</typeparam>
+ <typeparam name="T2">The type of the second argument received by the expected invocation.</typeparam>
+ <typeparam name="T3">The type of the third argument received by the expected invocation.</typeparam>
+ <typeparam name="T4">The type of the fourth argument received by the expected invocation.</typeparam>
+ <typeparam name="T5">The type of the fifth argument received by the expected invocation.</typeparam>
+ <typeparam name="T6">The type of the sixth argument received by the expected invocation.</typeparam>
+ <typeparam name="T7">The type of the seventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T8">The type of the eighth argument received by the expected invocation.</typeparam>
+ <typeparam name="T9">The type of the nineth argument received by the expected invocation.</typeparam>
+ <typeparam name="T10">The type of the tenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument received by the expected invocation.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument received by the expected invocation.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument received by the expected invocation.</typeparam>
+ <typeparam name="T16">The type of the sixteenth argument received by the expected invocation.</typeparam>
+ <seealso cref="M:Moq.Language.IRaise`1.Raises(System.Action{`0},System.EventArgs)"/>
+ </member>
+ <member name="T:Moq.Language.IVerifies">
+ <summary>
+ Defines the <c>Verifiable</c> verb.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.IVerifies.Verifiable">
+ <summary>
+ Marks the expectation as verifiable, meaning that a call
+ to <see cref="M:Moq.Mock.Verify"/> will check if this particular
+ expectation was met.
+ </summary>
+ <example>
+ The following example marks the expectation as verifiable:
+ <code>
+ mock.Expect(x => x.Execute("ping"))
+ .Returns(true)
+ .Verifiable();
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IVerifies.Verifiable(System.String)">
+ <summary>
+ Marks the expectation as verifiable, meaning that a call
+ to <see cref="M:Moq.Mock.Verify"/> will check if this particular
+ expectation was met, and specifies a message for failures.
+ </summary>
+ <example>
+ The following example marks the expectation as verifiable:
+ <code>
+ mock.Expect(x => x.Execute("ping"))
+ .Returns(true)
+ .Verifiable("Ping should be executed always!");
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.ISetup`1">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.Flow.ICallbackResult">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.IThrows">
+ <summary>
+ Defines the <c>Throws</c> verb.
+ </summary>
+ </member>
+ <member name="M:Moq.Language.IThrows.Throws(System.Exception)">
+ <summary>
+ Specifies the exception to throw when the method is invoked.
+ </summary>
+ <param name="exception">Exception instance to throw.</param>
+ <example>
+ This example shows how to throw an exception when the method is
+ invoked with an empty string argument:
+ <code>
+ mock.Setup(x => x.Execute(""))
+ .Throws(new ArgumentException());
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IThrows.Throws``1">
+ <summary>
+ Specifies the type of exception to throw when the method is invoked.
+ </summary>
+ <typeparam name="TException">Type of exception to instantiate and throw when the setup is matched.</typeparam>
+ <example>
+ This example shows how to throw an exception when the method is
+ invoked with an empty string argument:
+ <code>
+ mock.Setup(x => x.Execute(""))
+ .Throws<ArgumentException>();
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.IThrowsResult">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.Flow.ISetup`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.ICallback`2">
+ <summary>
+ Defines the <c>Callback</c> verb and overloads for callbacks on
+ setups that return a value.
+ </summary>
+ <typeparam name="TMock">Mocked type.</typeparam>
+ <typeparam name="TResult">Type of the return value of the setup.</typeparam>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``2(System.Action{``0,``1})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2) => Console.WriteLine(arg1 + arg2));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``3(System.Action{``0,``1,``2})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3) => Console.WriteLine(arg1 + arg2 + arg3));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``4(System.Action{``0,``1,``2,``3})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4) => Console.WriteLine(arg1 + arg2 + arg3 + arg4));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``5(System.Action{``0,``1,``2,``3,``4})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``6(System.Action{``0,``1,``2,``3,``4,``5})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``7(System.Action{``0,``1,``2,``3,``4,``5,``6})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``8(System.Action{``0,``1,``2,``3,``4,``5,``6,``7})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``9(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``10(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``11(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``12(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``13(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``14(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``15(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``16(System.Action{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original
+ arguments.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <typeparam name="T16">The type of the sixteenth argument of the invoked method.</typeparam>
+ <param name="action">The callback method to invoke.</param>
+ <returns>A reference to <see cref="T:Moq.Language.Flow.IReturnsThrows`2"/> interface.</returns>
+ <example>
+ Invokes the given callback with the concrete invocation arguments values.
+ <para>
+ Notice how the specific arguments are retrieved by simply declaring
+ them as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>(),
+ It.IsAny<string>()))
+ .Callback((arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16) => Console.WriteLine(arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15 + arg16));
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback(System.Action)">
+ <summary>
+ Specifies a callback to invoke when the method is called.
+ </summary>
+ <param name="action">The callback method to invoke.</param>
+ <example>
+ The following example specifies a callback to set a boolean value that can be used later:
+ <code>
+ var called = false;
+ mock.Setup(x => x.Execute())
+ .Callback(() => called = true)
+ .Returns(true);
+ </code>
+ Note that in the case of value-returning methods, after the <c>Callback</c>
+ call you can still specify the return value.
+ </example>
+ </member>
+ <member name="M:Moq.Language.ICallback`2.Callback``1(System.Action{``0})">
+ <summary>
+ Specifies a callback to invoke when the method is called that receives the original arguments.
+ </summary>
+ <typeparam name="T">The type of the argument of the invoked method.</typeparam>
+ <param name="action">Callback method to invoke.</param>
+ <example>
+ Invokes the given callback with the concrete invocation argument value.
+ <para>
+ Notice how the specific string argument is retrieved by simply declaring
+ it as part of the lambda expression for the callback:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(It.IsAny<string>()))
+ .Callback(command => Console.WriteLine(command))
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.IReturnsThrows`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.IReturns`2">
+ <summary>
+ Defines the <c>Returns</c> verb.
+ </summary>
+ <typeparam name="TMock">Mocked type.</typeparam>
+ <typeparam name="TResult">Type of the return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``2(System.Func{``0,``1,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2) => arg1 + arg2);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``3(System.Func{``0,``1,``2,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3) => arg1 + arg2 + arg3);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``4(System.Func{``0,``1,``2,``3,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4) => arg1 + arg2 + arg3 + arg4);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``5(System.Func{``0,``1,``2,``3,``4,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5) => arg1 + arg2 + arg3 + arg4 + arg5);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``6(System.Func{``0,``1,``2,``3,``4,``5,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``7(System.Func{``0,``1,``2,``3,``4,``5,``6,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``8(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``9(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``10(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``11(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``12(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``13(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``14(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``15(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``16(System.Func{``0,``1,``2,``3,``4,``5,``6,``7,``8,``9,``10,``11,``12,``13,``14,``15,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T1">The type of the first argument of the invoked method.</typeparam>
+ <typeparam name="T2">The type of the second argument of the invoked method.</typeparam>
+ <typeparam name="T3">The type of the third argument of the invoked method.</typeparam>
+ <typeparam name="T4">The type of the fourth argument of the invoked method.</typeparam>
+ <typeparam name="T5">The type of the fifth argument of the invoked method.</typeparam>
+ <typeparam name="T6">The type of the sixth argument of the invoked method.</typeparam>
+ <typeparam name="T7">The type of the seventh argument of the invoked method.</typeparam>
+ <typeparam name="T8">The type of the eighth argument of the invoked method.</typeparam>
+ <typeparam name="T9">The type of the nineth argument of the invoked method.</typeparam>
+ <typeparam name="T10">The type of the tenth argument of the invoked method.</typeparam>
+ <typeparam name="T11">The type of the eleventh argument of the invoked method.</typeparam>
+ <typeparam name="T12">The type of the twelfth argument of the invoked method.</typeparam>
+ <typeparam name="T13">The type of the thirteenth argument of the invoked method.</typeparam>
+ <typeparam name="T14">The type of the fourteenth argument of the invoked method.</typeparam>
+ <typeparam name="T15">The type of the fifteenth argument of the invoked method.</typeparam>
+ <typeparam name="T16">The type of the sixteenth argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <return>Returns a calculated value which is evaluated lazily at the time of the invocation.</return>
+ <example>
+ <para>
+ The return value is calculated from the value of the actual method invocation arguments.
+ Notice how the arguments are retrieved by simply declaring them as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>(),
+ It.IsAny<int>()))
+ .Returns((string arg1, string arg2, string arg3, string arg4, string arg5, string arg6, string arg7, string arg8, string arg9, string arg10, string arg11, string arg12, string arg13, string arg14, string arg15, string arg16) => arg1 + arg2 + arg3 + arg4 + arg5 + arg6 + arg7 + arg8 + arg9 + arg10 + arg11 + arg12 + arg13 + arg14 + arg15 + arg16);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns(`1)">
+ <summary>
+ Specifies the value to return.
+ </summary>
+ <param name="value">The value to return, or <see langword="null"/>.</param>
+ <example>
+ Return a <c>true</c> value from the method call:
+ <code>
+ mock.Setup(x => x.Execute("ping"))
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns(System.Func{`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method.
+ </summary>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <example group="returns">
+ Return a calculated value when the method is called:
+ <code>
+ mock.Setup(x => x.Execute("ping"))
+ .Returns(() => returnValues[0]);
+ </code>
+ The lambda expression to retrieve the return value is lazy-executed,
+ meaning that its value may change depending on the moment the method
+ is executed and the value the <c>returnValues</c> array has at
+ that moment.
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturns`2.Returns``1(System.Func{``0,`1})">
+ <summary>
+ Specifies a function that will calculate the value to return from the method,
+ retrieving the arguments for the invocation.
+ </summary>
+ <typeparam name="T">The type of the argument of the invoked method.</typeparam>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <example group="returns">
+ Return a calculated value which is evaluated lazily at the time of the invocation.
+ <para>
+ The lookup list can change between invocations and the setup
+ will return different values accordingly. Also, notice how the specific
+ string argument is retrieved by simply declaring it as part of the lambda
+ expression:
+ </para>
+ <code>
+ mock.Setup(x => x.Execute(It.IsAny<string>()))
+ .Returns((string command) => returnValues[command]);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.ISetupGetter`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.ICallbackGetter`2">
+ <summary>
+ Defines the <c>Callback</c> verb for property getter setups.
+ </summary>
+ <seealso cref="M:Moq.Mock`1.SetupGet``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})"/>
+ <typeparam name="TMock">Mocked type.</typeparam>
+ <typeparam name="TProperty">Type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Language.ICallbackGetter`2.Callback(System.Action)">
+ <summary>
+ Specifies a callback to invoke when the property is retrieved.
+ </summary>
+ <param name="action">Callback method to invoke.</param>
+ <example>
+ Invokes the given callback with the property value being set.
+ <code>
+ mock.SetupGet(x => x.Suspended)
+ .Callback(() => called = true)
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.IReturnsThrowsGetter`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.IReturnsGetter`2">
+ <summary>
+ Defines the <c>Returns</c> verb for property get setups.
+ </summary>
+ <typeparam name="TMock">Mocked type.</typeparam>
+ <typeparam name="TProperty">Type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Language.IReturnsGetter`2.Returns(`1)">
+ <summary>
+ Specifies the value to return.
+ </summary>
+ <param name="value">The value to return, or <see langword="null"/>.</param>
+ <example>
+ Return a <c>true</c> value from the property getter call:
+ <code>
+ mock.SetupGet(x => x.Suspended)
+ .Returns(true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Language.IReturnsGetter`2.Returns(System.Func{`1})">
+ <summary>
+ Specifies a function that will calculate the value to return for the property.
+ </summary>
+ <param name="valueFunction">The function that will calculate the return value.</param>
+ <example>
+ Return a calculated value when the property is retrieved:
+ <code>
+ mock.SetupGet(x => x.Suspended)
+ .Returns(() => returnValues[0]);
+ </code>
+ The lambda expression to retrieve the return value is lazy-executed,
+ meaning that its value may change depending on the moment the property
+ is retrieved and the value the <c>returnValues</c> array has at
+ that moment.
+ </example>
+ </member>
+ <member name="T:Moq.Language.Flow.ISetupSetter`2">
+ <summary>
+ Implements the fluent API.
+ </summary>
+ </member>
+ <member name="T:Moq.Language.ICallbackSetter`1">
+ <summary>
+ Defines the <c>Callback</c> verb for property setter setups.
+ </summary>
+ <typeparam name="TProperty">Type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Language.ICallbackSetter`1.Callback(System.Action{`0})">
+ <summary>
+ Specifies a callback to invoke when the property is set that receives the
+ property value being set.
+ </summary>
+ <param name="action">Callback method to invoke.</param>
+ <example>
+ Invokes the given callback with the property value being set.
+ <code>
+ mock.SetupSet(x => x.Suspended)
+ .Callback((bool state) => Console.WriteLine(state));
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Language.ISetupSequentialResult`1">
+ <summary>
+ Language for ReturnSequence
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ISetupSequentialResult`1.Returns(`0)">
+ <summary>
+ Returns value
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ISetupSequentialResult`1.Throws(System.Exception)">
+ <summary>
+ Throws an exception
+ </summary>
+ </member>
+ <member name="M:Moq.Language.ISetupSequentialResult`1.Throws``1">
+ <summary>
+ Throws an exception
+ </summary>
+ </member>
+ <member name="F:Moq.Linq.FluentMockVisitor.isFirst">
+ <summary>
+ The first method call or member access will be the
+ last segment of the expression (depth-first traversal),
+ which is the one we have to Setup rather than FluentMock.
+ And the last one is the one we have to Mock.Get rather
+ than FluentMock.
+ </summary>
+ </member>
+ <member name="T:Moq.Linq.MockQueryable`1">
+ <summary>
+ A default implementation of IQueryable for use with QueryProvider
+ </summary>
+ </member>
+ <member name="M:Moq.Linq.MockQueryable`1.#ctor(System.Linq.Expressions.MethodCallExpression)">
+ <summary>
+ The <paramref name="underlyingCreateMocks"/> is a
+ static method that returns an IQueryable of Mocks of T which is used to
+ apply the linq specification to.
+ </summary>
+ </member>
+ <member name="T:Moq.MockRepository">
+ <summary>
+ Utility repository class to use to construct multiple
+ mocks when consistent verification is
+ desired for all of them.
+ </summary>
+ <remarks>
+ If multiple mocks will be created during a test, passing
+ the desired <see cref="T:Moq.MockBehavior"/> (if different than the
+ <see cref="F:Moq.MockBehavior.Default"/> or the one
+ passed to the repository constructor) and later verifying each
+ mock can become repetitive and tedious.
+ <para>
+ This repository class helps in that scenario by providing a
+ simplified creation of multiple mocks with a default
+ <see cref="T:Moq.MockBehavior"/> (unless overriden by calling
+ <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/>) and posterior verification.
+ </para>
+ </remarks>
+ <example group="repository">
+ The following is a straightforward example on how to
+ create and automatically verify strict mocks using a <see cref="T:Moq.MockRepository"/>:
+ <code>
+ var repository = new MockRepository(MockBehavior.Strict);
+
+ var foo = repository.Create<IFoo>();
+ var bar = repository.Create<IBar>();
+
+ // no need to call Verifiable() on the setup
+ // as we'll be validating all of them anyway.
+ foo.Setup(f => f.Do());
+ bar.Setup(b => b.Redo());
+
+ // exercise the mocks here
+
+ repository.VerifyAll();
+ // At this point all setups are already checked
+ // and an optional MockException might be thrown.
+ // Note also that because the mocks are strict, any invocation
+ // that doesn't have a matching setup will also throw a MockException.
+ </code>
+ The following examples shows how to setup the repository
+ to create loose mocks and later verify only verifiable setups:
+ <code>
+ var repository = new MockRepository(MockBehavior.Loose);
+
+ var foo = repository.Create<IFoo>();
+ var bar = repository.Create<IBar>();
+
+ // this setup will be verified when we verify the repository
+ foo.Setup(f => f.Do()).Verifiable();
+
+ // this setup will NOT be verified
+ foo.Setup(f => f.Calculate());
+
+ // this setup will be verified when we verify the repository
+ bar.Setup(b => b.Redo()).Verifiable();
+
+ // exercise the mocks here
+ // note that because the mocks are Loose, members
+ // called in the interfaces for which no matching
+ // setups exist will NOT throw exceptions,
+ // and will rather return default values.
+
+ repository.Verify();
+ // At this point verifiable setups are already checked
+ // and an optional MockException might be thrown.
+ </code>
+ The following examples shows how to setup the repository with a
+ default strict behavior, overriding that default for a
+ specific mock:
+ <code>
+ var repository = new MockRepository(MockBehavior.Strict);
+
+ // this particular one we want loose
+ var foo = repository.Create<IFoo>(MockBehavior.Loose);
+ var bar = repository.Create<IBar>();
+
+ // specify setups
+
+ // exercise the mocks here
+
+ repository.Verify();
+ </code>
+ </example>
+ <seealso cref="T:Moq.MockBehavior"/>
+ </member>
+ <member name="T:Moq.MockFactory">
+ <summary>
+ Utility factory class to use to construct multiple
+ mocks when consistent verification is
+ desired for all of them.
+ </summary>
+ <remarks>
+ If multiple mocks will be created during a test, passing
+ the desired <see cref="T:Moq.MockBehavior"/> (if different than the
+ <see cref="F:Moq.MockBehavior.Default"/> or the one
+ passed to the factory constructor) and later verifying each
+ mock can become repetitive and tedious.
+ <para>
+ This factory class helps in that scenario by providing a
+ simplified creation of multiple mocks with a default
+ <see cref="T:Moq.MockBehavior"/> (unless overriden by calling
+ <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/>) and posterior verification.
+ </para>
+ </remarks>
+ <example group="factory">
+ The following is a straightforward example on how to
+ create and automatically verify strict mocks using a <see cref="T:Moq.MockFactory"/>:
+ <code>
+ var factory = new MockFactory(MockBehavior.Strict);
+
+ var foo = factory.Create<IFoo>();
+ var bar = factory.Create<IBar>();
+
+ // no need to call Verifiable() on the setup
+ // as we'll be validating all of them anyway.
+ foo.Setup(f => f.Do());
+ bar.Setup(b => b.Redo());
+
+ // exercise the mocks here
+
+ factory.VerifyAll();
+ // At this point all setups are already checked
+ // and an optional MockException might be thrown.
+ // Note also that because the mocks are strict, any invocation
+ // that doesn't have a matching setup will also throw a MockException.
+ </code>
+ The following examples shows how to setup the factory
+ to create loose mocks and later verify only verifiable setups:
+ <code>
+ var factory = new MockFactory(MockBehavior.Loose);
+
+ var foo = factory.Create<IFoo>();
+ var bar = factory.Create<IBar>();
+
+ // this setup will be verified when we verify the factory
+ foo.Setup(f => f.Do()).Verifiable();
+
+ // this setup will NOT be verified
+ foo.Setup(f => f.Calculate());
+
+ // this setup will be verified when we verify the factory
+ bar.Setup(b => b.Redo()).Verifiable();
+
+ // exercise the mocks here
+ // note that because the mocks are Loose, members
+ // called in the interfaces for which no matching
+ // setups exist will NOT throw exceptions,
+ // and will rather return default values.
+
+ factory.Verify();
+ // At this point verifiable setups are already checked
+ // and an optional MockException might be thrown.
+ </code>
+ The following examples shows how to setup the factory with a
+ default strict behavior, overriding that default for a
+ specific mock:
+ <code>
+ var factory = new MockFactory(MockBehavior.Strict);
+
+ // this particular one we want loose
+ var foo = factory.Create<IFoo>(MockBehavior.Loose);
+ var bar = factory.Create<IBar>();
+
+ // specify setups
+
+ // exercise the mocks here
+
+ factory.Verify();
+ </code>
+ </example>
+ <seealso cref="T:Moq.MockBehavior"/>
+ </member>
+ <member name="M:Moq.MockFactory.#ctor(Moq.MockBehavior)">
+ <summary>
+ Initializes the factory with the given <paramref name="defaultBehavior"/>
+ for newly created mocks from the factory.
+ </summary>
+ <param name="defaultBehavior">The behavior to use for mocks created
+ using the <see cref="M:Moq.MockFactory.Create``1"/> factory method if not overriden
+ by using the <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/> overload.</param>
+ </member>
+ <member name="M:Moq.MockFactory.Create``1">
+ <summary>
+ Creates a new mock with the default <see cref="T:Moq.MockBehavior"/>
+ specified at factory construction time.
+ </summary>
+ <typeparam name="T">Type to mock.</typeparam>
+ <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
+ <example ignore="true">
+ <code>
+ var factory = new MockFactory(MockBehavior.Strict);
+
+ var foo = factory.Create<IFoo>();
+ // use mock on tests
+
+ factory.VerifyAll();
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.MockFactory.Create``1(System.Object[])">
+ <summary>
+ Creates a new mock with the default <see cref="T:Moq.MockBehavior"/>
+ specified at factory construction time and with the
+ the given constructor arguments for the class.
+ </summary>
+ <remarks>
+ The mock will try to find the best match constructor given the
+ constructor arguments, and invoke that to initialize the instance.
+ This applies only to classes, not interfaces.
+ </remarks>
+ <typeparam name="T">Type to mock.</typeparam>
+ <param name="args">Constructor arguments for mocked classes.</param>
+ <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
+ <example ignore="true">
+ <code>
+ var factory = new MockFactory(MockBehavior.Default);
+
+ var mock = factory.Create<MyBase>("Foo", 25, true);
+ // use mock on tests
+
+ factory.Verify();
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.MockFactory.Create``1(Moq.MockBehavior)">
+ <summary>
+ Creates a new mock with the given <paramref name="behavior"/>.
+ </summary>
+ <typeparam name="T">Type to mock.</typeparam>
+ <param name="behavior">Behavior to use for the mock, which overrides
+ the default behavior specified at factory construction time.</param>
+ <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
+ <example group="factory">
+ The following example shows how to create a mock with a different
+ behavior to that specified as the default for the factory:
+ <code>
+ var factory = new MockFactory(MockBehavior.Strict);
+
+ var foo = factory.Create<IFoo>(MockBehavior.Loose);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.MockFactory.Create``1(Moq.MockBehavior,System.Object[])">
+ <summary>
+ Creates a new mock with the given <paramref name="behavior"/>
+ and with the the given constructor arguments for the class.
+ </summary>
+ <remarks>
+ The mock will try to find the best match constructor given the
+ constructor arguments, and invoke that to initialize the instance.
+ This applies only to classes, not interfaces.
+ </remarks>
+ <typeparam name="T">Type to mock.</typeparam>
+ <param name="behavior">Behavior to use for the mock, which overrides
+ the default behavior specified at factory construction time.</param>
+ <param name="args">Constructor arguments for mocked classes.</param>
+ <returns>A new <see cref="T:Moq.Mock`1"/>.</returns>
+ <example group="factory">
+ The following example shows how to create a mock with a different
+ behavior to that specified as the default for the factory, passing
+ constructor arguments:
+ <code>
+ var factory = new MockFactory(MockBehavior.Default);
+
+ var mock = factory.Create<MyBase>(MockBehavior.Strict, "Foo", 25, true);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.MockFactory.CreateMock``1(Moq.MockBehavior,System.Object[])">
+ <summary>
+ Implements creation of a new mock within the factory.
+ </summary>
+ <typeparam name="T">Type to mock.</typeparam>
+ <param name="behavior">The behavior for the new mock.</param>
+ <param name="args">Optional arguments for the construction of the mock.</param>
+ </member>
+ <member name="M:Moq.MockFactory.Verify">
+ <summary>
+ Verifies all verifiable expectations on all mocks created
+ by this factory.
+ </summary>
+ <seealso cref="M:Moq.Mock.Verify"/>
+ <exception cref="T:Moq.MockException">One or more mocks had expectations that were not satisfied.</exception>
+ </member>
+ <member name="M:Moq.MockFactory.VerifyAll">
+ <summary>
+ Verifies all verifiable expectations on all mocks created
+ by this factory.
+ </summary>
+ <seealso cref="M:Moq.Mock.Verify"/>
+ <exception cref="T:Moq.MockException">One or more mocks had expectations that were not satisfied.</exception>
+ </member>
+ <member name="M:Moq.MockFactory.VerifyMocks(System.Action{Moq.Mock})">
+ <summary>
+ Invokes <paramref name="verifyAction"/> for each mock
+ in <see cref="P:Moq.MockFactory.Mocks"/>, and accumulates the resulting
+ <see cref="T:Moq.MockVerificationException"/> that might be
+ thrown from the action.
+ </summary>
+ <param name="verifyAction">The action to execute against
+ each mock.</param>
+ </member>
+ <member name="P:Moq.MockFactory.CallBase">
+ <summary>
+ Whether the base member virtual implementation will be called
+ for mocked classes if no setup is matched. Defaults to <see langword="false"/>.
+ </summary>
+ </member>
+ <member name="P:Moq.MockFactory.DefaultValue">
+ <summary>
+ Specifies the behavior to use when returning default values for
+ unexpected invocations on loose mocks.
+ </summary>
+ </member>
+ <member name="P:Moq.MockFactory.Mocks">
+ <summary>
+ Gets the mocks that have been created by this factory and
+ that will get verified together.
+ </summary>
+ </member>
+ <member name="M:Moq.MockRepository.Of``1">
+ <summary>
+ Access the universe of mocks of the given type, to retrieve those
+ that behave according to the LINQ query specification.
+ </summary>
+ <typeparam name="T">The type of the mocked object to query.</typeparam>
+ </member>
+ <member name="M:Moq.MockRepository.Of``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Access the universe of mocks of the given type, to retrieve those
+ that behave according to the LINQ query specification.
+ </summary>
+ <param name="specification">The predicate with the setup expressions.</param>
+ <typeparam name="T">The type of the mocked object to query.</typeparam>
+ </member>
+ <member name="M:Moq.MockRepository.OneOf``1">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.MockRepository.OneOf``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <param name="specification">The predicate with the setup expressions.</param>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.MockRepository.CreateMockQuery``1">
+ <summary>
+ Creates the mock query with the underlying queriable implementation.
+ </summary>
+ </member>
+ <member name="M:Moq.MockRepository.CreateQueryable``1">
+ <summary>
+ Wraps the enumerator inside a queryable.
+ </summary>
+ </member>
+ <member name="M:Moq.MockRepository.CreateMocks``1">
+ <summary>
+ Method that is turned into the actual call from .Query{T}, to
+ transform the queryable query into a normal enumerable query.
+ This method is never used directly by consumers.
+ </summary>
+ </member>
+ <member name="M:Moq.MockRepository.#ctor(Moq.MockBehavior)">
+ <summary>
+ Initializes the repository with the given <paramref name="defaultBehavior"/>
+ for newly created mocks from the repository.
+ </summary>
+ <param name="defaultBehavior">The behavior to use for mocks created
+ using the <see cref="M:Moq.MockFactory.Create``1"/> repository method if not overriden
+ by using the <see cref="M:Moq.MockFactory.Create``1(Moq.MockBehavior)"/> overload.</param>
+ </member>
+ <member name="T:Moq.Mocks">
+ <summary>
+ Allows querying the universe of mocks for those that behave
+ according to the LINQ query specification.
+ </summary>
+ <devdoc>
+ This entry-point into Linq to Mocks is the only one in the root Moq
+ namespace to ease discovery. But to get all the mocking extension
+ methods on Object, a using of Moq.Linq must be done, so that the
+ polluting of the intellisense for all objects is an explicit opt-in.
+ </devdoc>
+ </member>
+ <member name="M:Moq.Mocks.Of``1">
+ <summary>
+ Access the universe of mocks of the given type, to retrieve those
+ that behave according to the LINQ query specification.
+ </summary>
+ <typeparam name="T">The type of the mocked object to query.</typeparam>
+ </member>
+ <member name="M:Moq.Mocks.Of``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Access the universe of mocks of the given type, to retrieve those
+ that behave according to the LINQ query specification.
+ </summary>
+ <param name="specification">The predicate with the setup expressions.</param>
+ <typeparam name="T">The type of the mocked object to query.</typeparam>
+ </member>
+ <member name="M:Moq.Mocks.OneOf``1">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.Mocks.OneOf``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Creates an mock object of the indicated type.
+ </summary>
+ <param name="specification">The predicate with the setup expressions.</param>
+ <typeparam name="T">The type of the mocked object.</typeparam>
+ <returns>The mocked object created.</returns>
+ </member>
+ <member name="M:Moq.Mocks.CreateMockQuery``1">
+ <summary>
+ Creates the mock query with the underlying queriable implementation.
+ </summary>
+ </member>
+ <member name="M:Moq.Mocks.CreateQueryable``1">
+ <summary>
+ Wraps the enumerator inside a queryable.
+ </summary>
+ </member>
+ <member name="M:Moq.Mocks.CreateMocks``1">
+ <summary>
+ Method that is turned into the actual call from .Query{T}, to
+ transform the queryable query into a normal enumerable query.
+ This method is never used directly by consumers.
+ </summary>
+ </member>
+ <member name="M:Moq.Mocks.SetPropery``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1)">
+ <summary>
+ Extension method used to support Linq-like setup properties that are not virtual but do have
+ a getter and a setter, thereby allowing the use of Linq to Mocks to quickly initialize Dtos too :)
+ </summary>
+ </member>
+ <member name="T:Moq.QueryableMockExtensions">
+ <summary>
+ Helper extensions that are used by the query translator.
+ </summary>
+ </member>
+ <member name="M:Moq.QueryableMockExtensions.FluentMock``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
+ <summary>
+ Retrieves a fluent mock from the given setup expression.
+ </summary>
+ </member>
+ <member name="T:Moq.Match">
+ <summary>
+ Allows creation custom value matchers that can be used on setups and verification,
+ completely replacing the built-in <see cref="T:Moq.It"/> class with your own argument
+ matching rules.
+ </summary><remarks>
+ See also <see cref="T:Moq.Match`1"/>.
+ </remarks>
+ </member>
+ <member name="M:Moq.Match.Matcher``1">
+ <devdoc>
+ Provided for the sole purpose of rendering the delegate passed to the
+ matcher constructor if no friendly render lambda is provided.
+ </devdoc>
+ </member>
+ <member name="M:Moq.Match.Create``1(System.Predicate{``0})">
+ <summary>
+ Initializes the match with the condition that
+ will be checked in order to match invocation
+ values.
+ </summary><param name="condition">The condition to match against actual values.</param><remarks>
+ <seealso cref="T:Moq.Match`1"/>
+ </remarks>
+ </member>
+ <member name="M:Moq.Match.Create``1(System.Predicate{``0},System.Linq.Expressions.Expression{System.Func{``0}})">
+ <!-- No matching elements were found for the following include tag --><include file="Match.xdoc" path="docs/doc[@for="Match.Create{T}(condition,renderExpression"]/*"/>
+ </member>
+ <member name="M:Moq.Match.SetLastMatch``1(Moq.Match{``0})">
+ <devdoc>
+ This method is used to set an expression as the last matcher invoked,
+ which is used in the SetupSet to allow matchers in the prop = value
+ delegate expression. This delegate is executed in "fluent" mode in
+ order to capture the value being set, and construct the corresponding
+ methodcall.
+ This is also used in the MatcherFactory for each argument expression.
+ This method ensures that when we execute the delegate, we
+ also track the matcher that was invoked, so that when we create the
+ methodcall we build the expression using it, rather than the null/default
+ value returned from the actual invocation.
+ </devdoc>
+ </member>
+ <member name="T:Moq.Match`1">
+ <summary>
+ Allows creation custom value matchers that can be used on setups and verification,
+ completely replacing the built-in <see cref="T:Moq.It"/> class with your own argument
+ matching rules.
+ </summary><typeparam name="T">Type of the value to match.</typeparam><remarks>
+ The argument matching is used to determine whether a concrete
+ invocation in the mock matches a given setup. This
+ matching mechanism is fully extensible.
+ </remarks><example>
+ Creating a custom matcher is straightforward. You just need to create a method
+ that returns a value from a call to <see cref="M:Moq.Match.Create``1(System.Predicate{``0})"/> with
+ your matching condition and optional friendly render expression:
+ <code>
+ [Matcher]
+ public Order IsBigOrder()
+ {
+ return Match<Order>.Create(
+ o => o.GrandTotal >= 5000,
+ /* a friendly expression to render on failures */
+ () => IsBigOrder());
+ }
+ </code>
+ This method can be used in any mock setup invocation:
+ <code>
+ mock.Setup(m => m.Submit(IsBigOrder()).Throws<UnauthorizedAccessException>();
+ </code>
+ At runtime, Moq knows that the return value was a matcher (note that the method MUST be
+ annotated with the [Matcher] attribute in order to determine this) and
+ evaluates your predicate with the actual value passed into your predicate.
+ <para>
+ Another example might be a case where you want to match a lists of orders
+ that contains a particular one. You might create matcher like the following:
+ </para>
+ <code>
+ public static class Orders
+ {
+ [Matcher]
+ public static IEnumerable<Order> Contains(Order order)
+ {
+ return Match<IEnumerable<Order>>.Create(orders => orders.Contains(order));
+ }
+ }
+ </code>
+ Now we can invoke this static method instead of an argument in an
+ invocation:
+ <code>
+ var order = new Order { ... };
+ var mock = new Mock<IRepository<Order>>();
+
+ mock.Setup(x => x.Save(Orders.Contains(order)))
+ .Throws<ArgumentException>();
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.MatcherAttribute">
+ <summary>
+ Marks a method as a matcher, which allows complete replacement
+ of the built-in <see cref="T:Moq.It"/> class with your own argument
+ matching rules.
+ </summary>
+ <remarks>
+ <b>This feature has been deprecated in favor of the new
+ and simpler <see cref="T:Moq.Match`1"/>.
+ </b>
+ <para>
+ The argument matching is used to determine whether a concrete
+ invocation in the mock matches a given setup. This
+ matching mechanism is fully extensible.
+ </para>
+ <para>
+ There are two parts of a matcher: the compiler matcher
+ and the runtime matcher.
+ <list type="bullet">
+ <item>
+ <term>Compiler matcher</term>
+ <description>Used to satisfy the compiler requirements for the
+ argument. Needs to be a method optionally receiving any arguments
+ you might need for the matching, but with a return type that
+ matches that of the argument.
+ <para>
+ Let's say I want to match a lists of orders that contains
+ a particular one. I might create a compiler matcher like the following:
+ </para>
+ <code>
+ public static class Orders
+ {
+ [Matcher]
+ public static IEnumerable<Order> Contains(Order order)
+ {
+ return null;
+ }
+ }
+ </code>
+ Now we can invoke this static method instead of an argument in an
+ invocation:
+ <code>
+ var order = new Order { ... };
+ var mock = new Mock<IRepository<Order>>();
+
+ mock.Setup(x => x.Save(Orders.Contains(order)))
+ .Throws<ArgumentException>();
+ </code>
+ Note that the return value from the compiler matcher is irrelevant.
+ This method will never be called, and is just used to satisfy the
+ compiler and to signal Moq that this is not a method that we want
+ to be invoked at runtime.
+ </description>
+ </item>
+ <item>
+ <term>Runtime matcher</term>
+ <description>
+ The runtime matcher is the one that will actually perform evaluation
+ when the test is run, and is defined by convention to have the
+ same signature as the compiler matcher, but where the return
+ value is the first argument to the call, which contains the
+ object received by the actual invocation at runtime:
+ <code>
+ public static bool Contains(IEnumerable<Order> orders, Order order)
+ {
+ return orders.Contains(order);
+ }
+ </code>
+ At runtime, the mocked method will be invoked with a specific
+ list of orders. This value will be passed to this runtime
+ matcher as the first argument, while the second argument is the
+ one specified in the setup (<c>x.Save(Orders.Contains(order))</c>).
+ <para>
+ The boolean returned determines whether the given argument has been
+ matched. If all arguments to the expected method are matched, then
+ the setup matches and is evaluated.
+ </para>
+ </description>
+ </item>
+ </list>
+ </para>
+ Using this extensible infrastructure, you can easily replace the entire
+ <see cref="T:Moq.It"/> set of matchers with your own. You can also avoid the
+ typical (and annoying) lengthy expressions that result when you have
+ multiple arguments that use generics.
+ </remarks>
+ <example>
+ The following is the complete example explained above:
+ <code>
+ public static class Orders
+ {
+ [Matcher]
+ public static IEnumerable<Order> Contains(Order order)
+ {
+ return null;
+ }
+
+ public static bool Contains(IEnumerable<Order> orders, Order order)
+ {
+ return orders.Contains(order);
+ }
+ }
+ </code>
+ And the concrete test using this matcher:
+ <code>
+ var order = new Order { ... };
+ var mock = new Mock<IRepository<Order>>();
+
+ mock.Setup(x => x.Save(Orders.Contains(order)))
+ .Throws<ArgumentException>();
+
+ // use mock, invoke Save, and have the matcher filter.
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Matchers.MatcherAttributeMatcher">
+ <summary>
+ Matcher to treat static functions as matchers.
+
+ mock.Setup(x => x.StringMethod(A.MagicString()));
+
+ public static class A
+ {
+ [Matcher]
+ public static string MagicString() { return null; }
+ public static bool MagicString(string arg)
+ {
+ return arg == "magic";
+ }
+ }
+
+ Will succeed if: mock.Object.StringMethod("magic");
+ and fail with any other call.
+ </summary>
+ </member>
+ <member name="T:Moq.MethodCallReturn">
+ <devdoc>
+ We need this non-generics base class so that
+ we can use <see cref="P:Moq.MethodCallReturn.HasReturnValue"/> from
+ generic code.
+ </devdoc>
+ </member>
+ <member name="T:Moq.MockBehavior">
+ <summary>
+ Options to customize the behavior of the mock.
+ </summary>
+ </member>
+ <member name="F:Moq.MockBehavior.Strict">
+ <summary>
+ Causes the mock to always throw
+ an exception for invocations that don't have a
+ corresponding setup.
+ </summary>
+ </member>
+ <member name="F:Moq.MockBehavior.Loose">
+ <summary>
+ Will never throw exceptions, returning default
+ values when necessary (null for reference types,
+ zero for value types or empty enumerables and arrays).
+ </summary>
+ </member>
+ <member name="F:Moq.MockBehavior.Default">
+ <summary>
+ Default mock behavior, which equals <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary>
+ </member>
+ <member name="T:Moq.MockDefaultValueProvider">
+ <summary>
+ A <see cref="T:Moq.IDefaultValueProvider"/> that returns an empty default value
+ for non-mockeable types, and mocks for all other types (interfaces and
+ non-sealed classes) that can be mocked.
+ </summary>
+ </member>
+ <member name="T:Moq.MockException">
+ <summary>
+ Exception thrown by mocks when setups are not matched,
+ the mock is not properly setup, etc.
+ </summary>
+ <remarks>
+ A distinct exception type is provided so that exceptions
+ thrown by the mock can be differentiated in tests that
+ expect other exceptions to be thrown (i.e. ArgumentException).
+ <para>
+ Richer exception hierarchy/types are not provided as
+ tests typically should <b>not</b> catch or expect exceptions
+ from the mocks. These are typically the result of changes
+ in the tested class or its collaborators implementation, and
+ result in fixes in the mock setup so that they dissapear and
+ allow the test to pass.
+ </para>
+ </remarks>
+ </member>
+ <member name="T:Moq.MockException.ExceptionReason">
+ <summary>
+ Made internal as it's of no use for
+ consumers, but it's important for
+ our own tests.
+ </summary>
+ </member>
+ <member name="T:Moq.MockVerificationException">
+ <devdoc>
+ Used by the mock factory to accumulate verification
+ failures.
+ </devdoc>
+ </member>
+ <member name="T:Moq.MockSequence">
+ <summary>
+ Helper class to setup a full trace between many mocks
+ </summary>
+ </member>
+ <member name="M:Moq.MockSequence.#ctor">
+ <summary>
+ Initialize a trace setup
+ </summary>
+ </member>
+ <member name="P:Moq.MockSequence.Cyclic">
+ <summary>
+ Allow sequence to be repeated
+ </summary>
+ </member>
+ <member name="T:Moq.MockSequenceHelper">
+ <summary>
+ define nice api
+ </summary>
+ </member>
+ <member name="M:Moq.MockSequenceHelper.InSequence``1(Moq.Mock{``0},Moq.MockSequence)">
+ <summary>
+ Perform an expectation in the trace.
+ </summary>
+ </member>
+ <member name="T:Moq.MockLegacyExtensions">
+ <summary>
+ Provides legacy API members as extensions so that
+ existing code continues to compile, but new code
+ doesn't see then.
+ </summary>
+ </member>
+ <member name="M:Moq.MockLegacyExtensions.SetupSet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1)">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.MockLegacyExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1)">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="M:Moq.MockLegacyExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},``1,System.String)">
+ <summary>
+ Obsolete.
+ </summary>
+ </member>
+ <member name="T:Moq.MockExtensions">
+ <summary>
+ Provides additional methods on mocks.
+ </summary>
+ <devdoc>
+ Provided as extension methods as they confuse the compiler
+ with the overloads taking Action.
+ </devdoc>
+ </member>
+ <member name="M:Moq.MockExtensions.SetupSet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
+ <summary>
+ Specifies a setup on the mocked type for a call to
+ to a property setter, regardless of its value.
+ </summary>
+ <remarks>
+ If more than one setup is set for the same property setter,
+ the latest one wins and is the one that will be executed.
+ </remarks>
+ <typeparam name="TProperty">Type of the property. Typically omitted as it can be inferred from the expression.</typeparam>
+ <typeparam name="T">Type of the mock.</typeparam>
+ <param name="mock">The target mock for the setup.</param>
+ <param name="expression">Lambda expression that specifies the property setter.</param>
+ <example group="setups">
+ <code>
+ mock.SetupSet(x => x.Suspended);
+ </code>
+ </example>
+ <devdoc>
+ This method is not legacy, but must be on an extension method to avoid
+ confusing the compiler with the new Action syntax.
+ </devdoc>
+ </member>
+ <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
+ <summary>
+ Verifies that a property has been set on the mock, regarless of its value.
+ </summary>
+ <example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed);
+ </code>
+ </example>
+ <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
+ <param name="expression">Expression to verify.</param>
+ <param name="mock">The mock instance.</param>
+ <typeparam name="T">Mocked type.</typeparam>
+ <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.</typeparam>
+ </member>
+ <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.String)">
+ <summary>
+ Verifies that a property has been set on the mock, specifying a failure
+ error message.
+ </summary>
+ <example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed);
+ </code>
+ </example>
+ <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
+ <param name="expression">Expression to verify.</param>
+ <param name="failMessage">Message to show if verification fails.</param>
+ <param name="mock">The mock instance.</param>
+ <typeparam name="T">Mocked type.</typeparam>
+ <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.</typeparam>
+ </member>
+ <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},Moq.Times)">
+ <summary>
+ Verifies that a property has been set on the mock, regardless
+ of the value but only the specified number of times.
+ </summary>
+ <example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed);
+ </code>
+ </example>
+ <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="mock">The mock instance.</param>
+ <typeparam name="T">Mocked type.</typeparam>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <param name="expression">Expression to verify.</param>
+ <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.</typeparam>
+ </member>
+ <member name="M:Moq.MockExtensions.VerifySet``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},Moq.Times,System.String)">
+ <summary>
+ Verifies that a property has been set on the mock, regardless
+ of the value but only the specified number of times, and specifying a failure
+ error message.
+ </summary>
+ <example group="verification">
+ This example assumes that the mock has been used,
+ and later we want to verify that a given invocation
+ with specific parameters was performed:
+ <code>
+ var mock = new Mock<IWarehouse>();
+ // exercise mock
+ //...
+ // Will throw if the test code didn't set the IsClosed property.
+ mock.VerifySet(warehouse => warehouse.IsClosed);
+ </code>
+ </example>
+ <exception cref="T:Moq.MockException">The invocation was not performed on the mock.</exception>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="mock">The mock instance.</param>
+ <typeparam name="T">Mocked type.</typeparam>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <param name="failMessage">Message to show if verification fails.</param>
+ <param name="expression">Expression to verify.</param>
+ <typeparam name="TProperty">Type of the property to verify. Typically omitted as it can
+ be inferred from the expression's return type.</typeparam>
+ </member>
+ <member name="T:Moq.Protected.IProtectedMock`1">
+ <summary>
+ Allows setups to be specified for protected members by using their
+ name as a string, rather than strong-typing them which is not possible
+ due to their visibility.
+ </summary>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.Setup(System.String,System.Object[])">
+ <summary>
+ Specifies a setup for a void method invocation with the given
+ <paramref name="voidMethodName"/>, optionally specifying arguments for the method call.
+ </summary>
+ <param name="voidMethodName">The name of the void method to be invoked.</param>
+ <param name="args">The optional arguments for the invocation. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.Setup``1(System.String,System.Object[])">
+ <summary>
+ Specifies a setup for an invocation on a property or a non void method with the given
+ <paramref name="methodOrPropertyName"/>, optionally specifying arguments for the method call.
+ </summary>
+ <param name="methodOrPropertyName">The name of the method or property to be invoked.</param>
+ <param name="args">The optional arguments for the invocation. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ <typeparam name="TResult">The return type of the method or property.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.SetupGet``1(System.String)">
+ <summary>
+ Specifies a setup for an invocation on a property getter with the given
+ <paramref name="propertyName"/>.
+ </summary>
+ <param name="propertyName">The name of the property.</param>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.SetupSet``1(System.String,System.Object)">
+ <summary>
+ Specifies a setup for an invocation on a property setter with the given
+ <paramref name="propertyName"/>.
+ </summary>
+ <param name="propertyName">The name of the property.</param>
+ <param name="value">The property value. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.Verify(System.String,Moq.Times,System.Object[])">
+ <summary>
+ Specifies a verify for a void method with the given <paramref name="methodName"/>,
+ optionally specifying arguments for the method call. Use in conjuntion with the default
+ <see cref="F:Moq.MockBehavior.Loose"/>.
+ </summary>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="methodName">The name of the void method to be verified.</param>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <param name="args">The optional arguments for the invocation. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.Verify``1(System.String,Moq.Times,System.Object[])">
+ <summary>
+ Specifies a verify for an invocation on a property or a non void method with the given
+ <paramref name="methodName"/>, optionally specifying arguments for the method call.
+ </summary>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="methodName">The name of the method or property to be invoked.</param>
+ <param name="args">The optional arguments for the invocation. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</param>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <typeparam name="TResult">The type of return value from the expression.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.VerifyGet``1(System.String,Moq.Times)">
+ <summary>
+ Specifies a verify for an invocation on a property getter with the given
+ <paramref name="propertyName"/>.
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ </summary>
+ <param name="propertyName">The name of the property.</param>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <typeparam name="TProperty">The type of the property.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.IProtectedMock`1.VerifySet``1(System.String,Moq.Times,System.Object)">
+ <summary>
+ Specifies a setup for an invocation on a property setter with the given
+ <paramref name="propertyName"/>.
+ </summary>
+ <exception cref="T:Moq.MockException">The invocation was not call the times specified by
+ <paramref name="times"/>.</exception>
+ <param name="propertyName">The name of the property.</param>
+ <param name="times">The number of times a method is allowed to be called.</param>
+ <param name="value">The property value.</param>
+ <typeparam name="TProperty">The type of the property. If argument matchers are used,
+ remember to use <see cref="T:Moq.Protected.ItExpr"/> rather than <see cref="T:Moq.It"/>.</typeparam>
+ </member>
+ <member name="T:Moq.Protected.ItExpr">
+ <summary>
+ Allows the specification of a matching condition for an
+ argument in a protected member setup, rather than a specific
+ argument value. "ItExpr" refers to the argument being matched.
+ </summary>
+ <remarks>
+ <para>Use this variant of argument matching instead of
+ <see cref="T:Moq.It"/> for protected setups.</para>
+ This class allows the setup to match a method invocation
+ with an arbitrary value, with a value in a specified range, or
+ even one that matches a given predicate, or null.
+ </remarks>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsNull``1">
+ <summary>
+ Matches a null value of the given <typeparamref name="TValue"/> type.
+ </summary>
+ <remarks>
+ Required for protected mocks as the null value cannot be used
+ directly as it prevents proper method overload selection.
+ </remarks>
+ <example>
+ <code>
+ // Throws an exception for a call to Remove with a null string value.
+ mock.Protected()
+ .Setup("Remove", ItExpr.IsNull<string>())
+ .Throws(new InvalidOperationException());
+ </code>
+ </example>
+ <typeparam name="TValue">Type of the value.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsAny``1">
+ <summary>
+ Matches any value of the given <typeparamref name="TValue"/> type.
+ </summary>
+ <remarks>
+ Typically used when the actual argument value for a method
+ call is not relevant.
+ </remarks>
+ <example>
+ <code>
+ // Throws an exception for a call to Remove with any string value.
+ mock.Protected()
+ .Setup("Remove", ItExpr.IsAny<string>())
+ .Throws(new InvalidOperationException());
+ </code>
+ </example>
+ <typeparam name="TValue">Type of the value.</typeparam>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.Is``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})">
+ <summary>
+ Matches any value that satisfies the given predicate.
+ </summary>
+ <typeparam name="TValue">Type of the argument to check.</typeparam>
+ <param name="match">The predicate used to match the method argument.</param>
+ <remarks>
+ Allows the specification of a predicate to perform matching
+ of method call arguments.
+ </remarks>
+ <example>
+ This example shows how to return the value <c>1</c> whenever the argument to the
+ <c>Do</c> method is an even number.
+ <code>
+ mock.Protected()
+ .Setup("Do", ItExpr.Is<int>(i => i % 2 == 0))
+ .Returns(1);
+ </code>
+ This example shows how to throw an exception if the argument to the
+ method is a negative number:
+ <code>
+ mock.Protected()
+ .Setup("GetUser", ItExpr.Is<int>(i => i < 0))
+ .Throws(new ArgumentException());
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsInRange``1(``0,``0,Moq.Range)">
+ <summary>
+ Matches any value that is in the range specified.
+ </summary>
+ <typeparam name="TValue">Type of the argument to check.</typeparam>
+ <param name="from">The lower bound of the range.</param>
+ <param name="to">The upper bound of the range.</param>
+ <param name="rangeKind">The kind of range. See <see cref="T:Moq.Range"/>.</param>
+ <example>
+ The following example shows how to expect a method call
+ with an integer argument within the 0..100 range.
+ <code>
+ mock.Protected()
+ .Setup("HasInventory",
+ ItExpr.IsAny<string>(),
+ ItExpr.IsInRange(0, 100, Range.Inclusive))
+ .Returns(false);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsRegex(System.String)">
+ <summary>
+ Matches a string argument if it matches the given regular expression pattern.
+ </summary>
+ <param name="regex">The pattern to use to match the string argument value.</param>
+ <example>
+ The following example shows how to expect a call to a method where the
+ string argument matches the given regular expression:
+ <code>
+ mock.Protected()
+ .Setup("Check", ItExpr.IsRegex("[a-z]+"))
+ .Returns(1);
+ </code>
+ </example>
+ </member>
+ <member name="M:Moq.Protected.ItExpr.IsRegex(System.String,System.Text.RegularExpressions.RegexOptions)">
+ <summary>
+ Matches a string argument if it matches the given regular expression pattern.
+ </summary>
+ <param name="regex">The pattern to use to match the string argument value.</param>
+ <param name="options">The options used to interpret the pattern.</param>
+ <example>
+ The following example shows how to expect a call to a method where the
+ string argument matches the given regular expression, in a case insensitive way:
+ <code>
+ mock.Protected()
+ .Setup("Check", ItExpr.IsRegex("[a-z]+", RegexOptions.IgnoreCase))
+ .Returns(1);
+ </code>
+ </example>
+ </member>
+ <member name="T:Moq.Protected.ProtectedExtension">
+ <summary>
+ Enables the <c>Protected()</c> method on <see cref="T:Moq.Mock`1"/>,
+ allowing setups to be set for protected members by using their
+ name as a string, rather than strong-typing them which is not possible
+ due to their visibility.
+ </summary>
+ </member>
+ <member name="M:Moq.Protected.ProtectedExtension.Protected``1(Moq.Mock{``0})">
+ <summary>
+ Enable protected setups for the mock.
+ </summary>
+ <typeparam name="T">Mocked object type. Typically omitted as it can be inferred from the mock instance.</typeparam>
+ <param name="mock">The mock to set the protected setups on.</param>
+ </member>
+ <member name="T:ThisAssembly">
+ <group name="overview" title="Overview" order="0" />
+ <group name="setups" title="Specifying setups" order="1" />
+ <group name="returns" title="Returning values from members" order="2" />
+ <group name="verification" title="Verifying setups" order="3" />
+ <group name="advanced" title="Advanced scenarios" order="99" />
+ <group name="factory" title="Using MockFactory for consistency across mocks" order="4" />
+ </member>
+ <member name="T:Moq.Properties.Resources">
+ <summary>
+ A strongly-typed resource class, for looking up localized strings, etc.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ResourceManager">
+ <summary>
+ Returns the cached ResourceManager instance used by this class.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.Culture">
+ <summary>
+ Overrides the current thread's CurrentUICulture property for all
+ resource lookups using this strongly typed resource class.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.AlreadyInitialized">
+ <summary>
+ Looks up a localized string similar to Mock type has already been initialized by accessing its Object property. Adding interfaces must be done before that..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ArgumentCannotBeEmpty">
+ <summary>
+ Looks up a localized string similar to Value cannot be an empty string..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.AsMustBeInterface">
+ <summary>
+ Looks up a localized string similar to Can only add interfaces to the mock..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.CantSetReturnValueForVoid">
+ <summary>
+ Looks up a localized string similar to Can't set return value for void method {0}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ConstructorArgsForInterface">
+ <summary>
+ Looks up a localized string similar to Constructor arguments cannot be passed for interface mocks..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ConstructorNotFound">
+ <summary>
+ Looks up a localized string similar to A matching constructor for the given arguments was not found on the mocked type..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.EventNofFound">
+ <summary>
+ Looks up a localized string similar to Could not locate event for attach or detach method {0}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.FieldsNotSupported">
+ <summary>
+ Looks up a localized string similar to Expression {0} involves a field access, which is not supported. Use properties instead..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.InvalidMockClass">
+ <summary>
+ Looks up a localized string similar to Type to mock must be an interface or an abstract or non-sealed class. .
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.InvalidMockGetType">
+ <summary>
+ Looks up a localized string similar to Cannot retrieve a mock with the given object type {0} as it's not the main type of the mock or any of its additional interfaces.
+ Please cast the argument to one of the supported types: {1}.
+ Remember that there's no generics covariance in the CLR, so your object must be one of these types in order for the call to succeed..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.LinqBinaryOperatorNotSupported">
+ <summary>
+ Looks up a localized string similar to The equals ("==" or "=" in VB) and the conditional 'and' ("&&" or "AndAlso" in VB) operators are the only ones supported in the query specification expression. Unsupported expression: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.LinqMethodNotSupported">
+ <summary>
+ Looks up a localized string similar to LINQ method '{0}' not supported..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.LinqMethodNotVirtual">
+ <summary>
+ Looks up a localized string similar to Expression contains a call to a method which is not virtual (overridable in VB) or abstract. Unsupported expression: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MemberMissing">
+ <summary>
+ Looks up a localized string similar to Member {0}.{1} does not exist..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MethodIsPublic">
+ <summary>
+ Looks up a localized string similar to Method {0}.{1} is public. Use strong-typed Expect overload instead:
+ mock.Setup(x => x.{1}());
+ .
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MockExceptionMessage">
+ <summary>
+ Looks up a localized string similar to {0} invocation failed with mock behavior {1}.
+ {2}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MoreThanNCalls">
+ <summary>
+ Looks up a localized string similar to Expected only {0} calls to {1}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.MoreThanOneCall">
+ <summary>
+ Looks up a localized string similar to Expected only one call to {0}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsAtLeast">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock at least {2} times, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsAtLeastOnce">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock at least once, but was never performed: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsAtMost">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock at most {3} times, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsAtMostOnce">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock at most once, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsBetweenExclusive">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock between {2} and {3} times (Exclusive), but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsBetweenInclusive">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock between {2} and {3} times (Inclusive), but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsExactly">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock exactly {2} times, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsNever">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock should never have been performed, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoMatchingCallsOnce">
+ <summary>
+ Looks up a localized string similar to {0}
+ Expected invocation on the mock once, but was {4} times: {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.NoSetup">
+ <summary>
+ Looks up a localized string similar to All invocations on the mock must have a corresponding setup..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ObjectInstanceNotMock">
+ <summary>
+ Looks up a localized string similar to Object instance was not created by Moq..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.OutExpressionMustBeConstantValue">
+ <summary>
+ Looks up a localized string similar to Out expression must evaluate to a constant value..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertyGetNotFound">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} does not have a getter..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertyMissing">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} does not exist..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertyNotReadable">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} is write-only..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertyNotWritable">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} is read-only..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.PropertySetNotFound">
+ <summary>
+ Looks up a localized string similar to Property {0}.{1} does not have a setter..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.RaisedUnassociatedEvent">
+ <summary>
+ Looks up a localized string similar to Cannot raise a mocked event unless it has been associated (attached) to a concrete event in a mocked object..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.RefExpressionMustBeConstantValue">
+ <summary>
+ Looks up a localized string similar to Ref expression must evaluate to a constant value..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.ReturnValueRequired">
+ <summary>
+ Looks up a localized string similar to Invocation needs to return a value and therefore must have a corresponding setup that provides it..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupLambda">
+ <summary>
+ Looks up a localized string similar to A lambda expression is expected as the argument to It.Is<T>..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupNever">
+ <summary>
+ Looks up a localized string similar to Invocation {0} should not have been made..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupNotMethod">
+ <summary>
+ Looks up a localized string similar to Expression is not a method invocation: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupNotProperty">
+ <summary>
+ Looks up a localized string similar to Expression is not a property access: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupNotSetter">
+ <summary>
+ Looks up a localized string similar to Expression is not a property setter invocation..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupOnNonMemberMethod">
+ <summary>
+ Looks up a localized string similar to Expression references a method that does not belong to the mocked object: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.SetupOnNonOverridableMember">
+ <summary>
+ Looks up a localized string similar to Invalid setup on a non-virtual (overridable in VB) member: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.TypeNotImplementInterface">
+ <summary>
+ Looks up a localized string similar to Type {0} does not implement required interface {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.TypeNotInheritFromType">
+ <summary>
+ Looks up a localized string similar to Type {0} does not from required type {1}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnexpectedPublicProperty">
+ <summary>
+ Looks up a localized string similar to To specify a setup for public property {0}.{1}, use the typed overloads, such as:
+ mock.Setup(x => x.{1}).Returns(value);
+ mock.SetupGet(x => x.{1}).Returns(value); //equivalent to previous one
+ mock.SetupSet(x => x.{1}).Callback(callbackDelegate);
+ .
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedExpression">
+ <summary>
+ Looks up a localized string similar to Unsupported expression: {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedIntermediateExpression">
+ <summary>
+ Looks up a localized string similar to Only property accesses are supported in intermediate invocations on a setup. Unsupported expression {0}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedIntermediateType">
+ <summary>
+ Looks up a localized string similar to Expression contains intermediate property access {0}.{1} which is of type {2} and cannot be mocked. Unsupported expression {3}..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedMatcherParamsForSetter">
+ <summary>
+ Looks up a localized string similar to Setter expression cannot use argument matchers that receive parameters..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedMember">
+ <summary>
+ Looks up a localized string similar to Member {0} is not supported for protected mocking..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.UnsupportedNonStaticMatcherForSetter">
+ <summary>
+ Looks up a localized string similar to Setter expression can only use static custom matchers..
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.VerficationFailed">
+ <summary>
+ Looks up a localized string similar to The following setups were not matched:
+ {0}.
+ </summary>
+ </member>
+ <member name="P:Moq.Properties.Resources.VerifyOnNonVirtualMember">
+ <summary>
+ Looks up a localized string similar to Invalid verify on a non-virtual (overridable in VB) member: {0}.
+ </summary>
+ </member>
+ <member name="T:Moq.Range">
+ <summary>
+ Kind of range to use in a filter specified through
+ <see cref="M:Moq.It.IsInRange``1(``0,``0,Moq.Range)"/>.
+ </summary>
+ </member>
+ <member name="F:Moq.Range.Inclusive">
+ <summary>
+ The range includes the <c>to</c> and
+ <c>from</c> values.
+ </summary>
+ </member>
+ <member name="F:Moq.Range.Exclusive">
+ <summary>
+ The range does not include the <c>to</c> and
+ <c>from</c> values.
+ </summary>
+ </member>
+ <member name="T:Moq.SequenceExtensions">
+ <summary>
+ Helper for sequencing return values in the same method.
+ </summary>
+ </member>
+ <member name="M:Moq.SequenceExtensions.SetupSequence``2(Moq.Mock{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})">
+ <summary>
+ Return a sequence of values, once per call.
+ </summary>
+ </member>
+ <member name="T:Moq.Times">
+ <summary>
+ Defines the number of invocations allowed by a mocked method.
+ </summary>
+ </member>
+ <member name="M:Moq.Times.AtLeast(System.Int32)">
+ <summary>
+ Specifies that a mocked method should be invoked <paramref name="callCount"/> times as minimum.
+ </summary><param name="callCount">The minimun number of times.</param><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.AtLeastOnce">
+ <summary>
+ Specifies that a mocked method should be invoked one time as minimum.
+ </summary><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.AtMost(System.Int32)">
+ <summary>
+ Specifies that a mocked method should be invoked <paramref name="callCount"/> time as maximun.
+ </summary><param name="callCount">The maximun number of times.</param><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.AtMostOnce">
+ <summary>
+ Specifies that a mocked method should be invoked one time as maximun.
+ </summary><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Between(System.Int32,System.Int32,Moq.Range)">
+ <summary>
+ Specifies that a mocked method should be invoked between <paramref name="callCountFrom"/> and
+ <paramref name="callCountTo"/> times.
+ </summary><param name="callCountFrom">The minimun number of times.</param><param name="callCountTo">The maximun number of times.</param><param name="rangeKind">
+ The kind of range. See <see cref="T:Moq.Range"/>.
+ </param><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Exactly(System.Int32)">
+ <summary>
+ Specifies that a mocked method should be invoked exactly <paramref name="callCount"/> times.
+ </summary><param name="callCount">The times that a method or property can be called.</param><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Never">
+ <summary>
+ Specifies that a mocked method should not be invoked.
+ </summary><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Once">
+ <summary>
+ Specifies that a mocked method should be invoked exactly one time.
+ </summary><returns>An object defining the allowed number of invocations.</returns>
+ </member>
+ <member name="M:Moq.Times.Equals(System.Object)">
+ <summary>
+ Determines whether the specified <see cref="T:System.Object"/> is equal to this instance.
+ </summary><param name="obj">
+ The <see cref="T:System.Object"/> to compare with this instance.
+ </param><returns>
+ <c>true</c> if the specified <see cref="T:System.Object"/> is equal to this instance; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="M:Moq.Times.GetHashCode">
+ <summary>
+ Returns a hash code for this instance.
+ </summary><returns>
+ A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+ </returns>
+ </member>
+ <member name="M:Moq.Times.op_Equality(Moq.Times,Moq.Times)">
+ <summary>
+ Determines whether two specified <see cref="T:Moq.Times"/> objects have the same value.
+ </summary><param name="left">
+ The first <see cref="T:Moq.Times"/>.
+ </param><param name="right">
+ The second <see cref="T:Moq.Times"/>.
+ </param><returns>
+ <c>true</c> if the value of left is the same as the value of right; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="M:Moq.Times.op_Inequality(Moq.Times,Moq.Times)">
+ <summary>
+ Determines whether two specified <see cref="T:Moq.Times"/> objects have different values.
+ </summary><param name="left">
+ The first <see cref="T:Moq.Times"/>.
+ </param><param name="right">
+ The second <see cref="T:Moq.Times"/>.
+ </param><returns>
+ <c>true</c> if the value of left is different from the value of right; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ </members>
+</doc>
diff --git a/SendGrid/packages/NUnit.2.5.10.11092/Logo.ico b/SendGrid/packages/NUnit.2.5.10.11092/Logo.ico Binary files differnew file mode 100755 index 0000000..13c4ff9 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/Logo.ico diff --git a/SendGrid/packages/NUnit.2.5.10.11092/NUnit.2.5.10.11092.nupkg b/SendGrid/packages/NUnit.2.5.10.11092/NUnit.2.5.10.11092.nupkg Binary files differnew file mode 100755 index 0000000..7e9a777 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/NUnit.2.5.10.11092.nupkg diff --git a/SendGrid/packages/NUnit.2.5.10.11092/NUnitFitTests.html b/SendGrid/packages/NUnit.2.5.10.11092/NUnitFitTests.html new file mode 100755 index 0000000..b7eb5c9 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/NUnitFitTests.html @@ -0,0 +1,277 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<html>
+ <body>
+ <h1>NUnit Acceptance Tests</h1>
+ <p>
+ Developers love self-referential programs! Hence, NUnit has always run all it's
+ own tests, even those that are not really unit tests.
+ <p>Now, beginning with NUnit 2.4, NUnit has top-level tests using Ward Cunningham's
+ FIT framework. At this time, the tests are pretty rudimentary, but it's a start
+ and it's a framework for doing more.
+ <h2>Running the Tests</h2>
+ <p>Open a console or shell window and navigate to the NUnit bin directory, which
+ contains this file. To run the test under Microsoft .Net, enter the command
+ <pre> runFile NUnitFitTests.html TestResults.html .</pre>
+ To run it under Mono, enter
+ <pre> mono runFile.exe NUnitFitTests.html TestResults.html .</pre>
+ Note the space and dot at the end of each command. The results of your test
+ will be in TestResults.html in the same directory.
+ <h2>Platform and CLR Version</h2>
+ <table BORDER cellSpacing="0" cellPadding="5">
+ <tr>
+ <td colspan="2">NUnit.Fixtures.PlatformInfo</td>
+ </tr>
+ </table>
+ <h2>Verify Unit Tests</h2>
+ <p>
+ Load and run the NUnit unit tests, verifying that the results are as expected.
+ When these tests are run on different platforms, different numbers of tests may
+ be skipped, so the values for Skipped and Run tests are informational only.
+ <p>
+ The number of tests in each assembly should be constant across all platforms -
+ any discrepancy usually means that one of the test source files was not
+ compiled on the platform. There should be no failures and no tests ignored.
+ <p><b>Note:</b>
+ At the moment, the nunit.extensions.tests assembly is failing because the
+ fixture doesn't initialize addins in the test domain.
+ <p>
+ <table BORDER cellSpacing="0" cellPadding="5">
+ <tr>
+ <td colspan="6">NUnit.Fixtures.AssemblyRunner</td>
+ </tr>
+ <tr>
+ <td>Assembly</td>
+ <td>Tests()</td>
+ <td>Run()</td>
+ <td>Skipped()</td>
+ <td>Ignored()</td>
+ <td>Failures()</td>
+ </tr>
+ <tr>
+ <td>nunit.framework.tests.dll</td>
+ <td>397</td>
+ <td> </td>
+ <td> </td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td>nunit.core.tests.dll</td>
+ <td>355</td>
+ <td> </td>
+ <td> </td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td>nunit.util.tests.dll</td>
+ <td>238</td>
+ <td> </td>
+ <td> </td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td>nunit.mocks.tests.dll</td>
+ <td>43</td>
+ <td> </td>
+ <td> </td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td>nunit.extensions.tests.dll</td>
+ <td>5</td>
+ <td> </td>
+ <td> </td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td>nunit-console.tests.dll</td>
+ <td>40</td>
+ <td> </td>
+ <td> </td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td>nunit.uikit.tests.dll</td>
+ <td>34</td>
+ <td> </td>
+ <td> </td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td>nunit-gui.tests.dll</td>
+ <td>15</td>
+ <td> </td>
+ <td> </td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td>nunit.fixtures.tests.dll</td>
+ <td>6</td>
+ <td> </td>
+ <td> </td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ </table>
+ <h2>Code Snippet Tests</h2>
+ <p>
+ These tests create a test assembly from a snippet of code and then load and run
+ the tests that it contains, verifying that the structure of the loaded tests is
+ as expected and that the number of tests run, skipped, ignored or failed is
+ correct.
+ <p>
+ <table BORDER cellSpacing="0" cellPadding="5">
+ <tr>
+ <td colspan="6">NUnit.Fixtures.SnippetRunner</td>
+ </tr>
+ <tr>
+ <td>Code</td>
+ <td>Tree()</td>
+ <td>Run()</td>
+ <td>Skipped()</td>
+ <td>Ignored()</td>
+ <td>Failures()</td>
+ </tr>
+ <tr>
+ <td><pre>public class TestClass
+{
+}</pre>
+ </td>
+ <td>EMPTY</td>
+ <td>0</td>
+ <td>0</td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td><pre>using NUnit.Framework;
+
+[TestFixture]
+public class TestClass
+{
+}</pre>
+ </td>
+ <td>TestClass</td>
+ <td>0</td>
+ <td>0</td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td><pre>using NUnit.Framework;
+
+[TestFixture]
+public class TestClass
+{
+ [Test]
+ public void T1() { }
+ [Test]
+ public void T2() { }
+ [Test]
+ public void T3() { }
+}</pre>
+ </td>
+ <td><pre>TestClass
+>T1
+>T2
+>T3</pre>
+ </td>
+ <td>3</td>
+ <td>0</td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td><pre>using NUnit.Framework;
+
+[TestFixture]
+public class TestClass1
+{
+ [Test]
+ public void T1() { }
+}
+
+[TestFixture]
+public class TestClass2
+{
+ [Test]
+ public void T2() { }
+ [Test]
+ public void T3() { }
+}</pre>
+ </td>
+ <td><pre>TestClass1
+>T1
+TestClass2
+>T2
+>T3</pre>
+ </td>
+ <td>3</td>
+ <td>0</td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td><pre>using NUnit.Framework;
+
+[TestFixture]
+public class TestClass
+{
+ [Test]
+ public void T1() { }
+ [Test, Ignore]
+ public void T2() { }
+ [Test]
+ public void T3() { }
+}</pre>
+ </td>
+ <td><pre>TestClass
+>T1
+>T2
+>T3</pre>
+ </td>
+ <td>2</td>
+ <td>0</td>
+ <td>1</td>
+ <td>0</td>
+ </tr>
+ <tr>
+ <td><pre>using NUnit.Framework;
+
+[TestFixture]
+public class TestClass
+{
+ [Test]
+ public void T1() { }
+ [Test, Explicit]
+ public void T2() { }
+ [Test]
+ public void T3() { }
+}</pre>
+ </td>
+ <td><pre>TestClass
+>T1
+>T2
+>T3</pre>
+ </td>
+ <td>2</td>
+ <td>1</td>
+ <td>0</td>
+ <td>0</td>
+ </tr>
+ </table>
+ <h2>Summary Information</h2>
+ <table BORDER cellSpacing="0" cellPadding="5">
+ <tr>
+ <td colspan="2">fit.Summary</td>
+ </tr>
+ </table>
+ </body>
+</html>
diff --git a/SendGrid/packages/NUnit.2.5.10.11092/fit-license.txt b/SendGrid/packages/NUnit.2.5.10.11092/fit-license.txt new file mode 100755 index 0000000..af37532 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/fit-license.txt @@ -0,0 +1,342 @@ +
+
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ <signature of Ty Coon>, 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Library General
+Public License instead of this License.
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.dll b/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.dll Binary files differnew file mode 100755 index 0000000..6856e51 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.xml b/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.xml new file mode 100755 index 0000000..c98e5ad --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.framework.xml @@ -0,0 +1,10407 @@ +<?xml version="1.0"?>
+<doc>
+ <assembly>
+ <name>nunit.framework</name>
+ </assembly>
+ <members>
+ <member name="T:NUnit.Framework.CategoryAttribute">
+ <summary>
+ Attribute used to apply a category to a test
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.CategoryAttribute.categoryName">
+ <summary>
+ The name of the category
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.CategoryAttribute.#ctor(System.String)">
+ <summary>
+ Construct attribute for a given category based on
+ a name. The name may not contain the characters ',',
+ '+', '-' or '!'. However, this is not checked in the
+ constructor since it would cause an error to arise at
+ as the test was loaded without giving a clear indication
+ of where the problem is located. The error is handled
+ in NUnitFramework.cs by marking the test as not
+ runnable.
+ </summary>
+ <param name="name">The name of the category</param>
+ </member>
+ <member name="M:NUnit.Framework.CategoryAttribute.#ctor">
+ <summary>
+ Protected constructor uses the Type name as the name
+ of the category.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.CategoryAttribute.Name">
+ <summary>
+ The name of the category
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.DatapointAttribute">
+ <summary>
+ Used to mark a field for use as a datapoint when executing a theory
+ within the same fixture that requires an argument of the field's Type.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.DatapointsAttribute">
+ <summary>
+ Used to mark an array as containing a set of datapoints to be used
+ executing a theory within the same fixture that requires an argument
+ of the Type of the array elements.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.DescriptionAttribute">
+ <summary>
+ Attribute used to provide descriptive text about a
+ test case or fixture.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.DescriptionAttribute.#ctor(System.String)">
+ <summary>
+ Construct the attribute
+ </summary>
+ <param name="description">Text describing the test</param>
+ </member>
+ <member name="P:NUnit.Framework.DescriptionAttribute.Description">
+ <summary>
+ Gets the test description
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.MessageMatch">
+ <summary>
+ Enumeration indicating how the expected message parameter is to be used
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.MessageMatch.Exact">
+ Expect an exact match
+ </member>
+ <member name="F:NUnit.Framework.MessageMatch.Contains">
+ Expect a message containing the parameter string
+ </member>
+ <member name="F:NUnit.Framework.MessageMatch.Regex">
+ Match the regular expression provided as a parameter
+ </member>
+ <member name="F:NUnit.Framework.MessageMatch.StartsWith">
+ Expect a message that starts with the parameter string
+ </member>
+ <member name="T:NUnit.Framework.ExpectedExceptionAttribute">
+ <summary>
+ ExpectedExceptionAttribute
+ </summary>
+
+ </member>
+ <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor">
+ <summary>
+ Constructor for a non-specific exception
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.Type)">
+ <summary>
+ Constructor for a given type of exception
+ </summary>
+ <param name="exceptionType">The type of the expected exception</param>
+ </member>
+ <member name="M:NUnit.Framework.ExpectedExceptionAttribute.#ctor(System.String)">
+ <summary>
+ Constructor for a given exception name
+ </summary>
+ <param name="exceptionName">The full name of the expected exception</param>
+ </member>
+ <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedException">
+ <summary>
+ Gets or sets the expected exception type
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedExceptionName">
+ <summary>
+ Gets or sets the full Type name of the expected exception
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ExpectedExceptionAttribute.ExpectedMessage">
+ <summary>
+ Gets or sets the expected message text
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ExpectedExceptionAttribute.UserMessage">
+ <summary>
+ Gets or sets the user message displayed in case of failure
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ExpectedExceptionAttribute.MatchType">
+ <summary>
+ Gets or sets the type of match to be performed on the expected message
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ExpectedExceptionAttribute.Handler">
+ <summary>
+ Gets the name of a method to be used as an exception handler
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.ExplicitAttribute">
+ <summary>
+ ExplicitAttribute marks a test or test fixture so that it will
+ only be run if explicitly executed from the gui or command line
+ or if it is included by use of a filter. The test will not be
+ run simply because an enclosing suite is run.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.ExplicitAttribute.#ctor">
+ <summary>
+ Default constructor
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.ExplicitAttribute.#ctor(System.String)">
+ <summary>
+ Constructor with a reason
+ </summary>
+ <param name="reason">The reason test is marked explicit</param>
+ </member>
+ <member name="P:NUnit.Framework.ExplicitAttribute.Reason">
+ <summary>
+ The reason test is marked explicit
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.IgnoreAttribute">
+ <summary>
+ Attribute used to mark a test that is to be ignored.
+ Ignored tests result in a warning message when the
+ tests are run.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.IgnoreAttribute.#ctor">
+ <summary>
+ Constructs the attribute without giving a reason
+ for ignoring the test.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.IgnoreAttribute.#ctor(System.String)">
+ <summary>
+ Constructs the attribute giving a reason for ignoring the test
+ </summary>
+ <param name="reason">The reason for ignoring the test</param>
+ </member>
+ <member name="P:NUnit.Framework.IgnoreAttribute.Reason">
+ <summary>
+ The reason for ignoring a test
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.IncludeExcludeAttribute">
+ <summary>
+ Abstract base for Attributes that are used to include tests
+ in the test run based on environmental settings.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor">
+ <summary>
+ Constructor with no included items specified, for use
+ with named property syntax.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.IncludeExcludeAttribute.#ctor(System.String)">
+ <summary>
+ Constructor taking one or more included items
+ </summary>
+ <param name="include">Comma-delimited list of included items</param>
+ </member>
+ <member name="P:NUnit.Framework.IncludeExcludeAttribute.Include">
+ <summary>
+ Name of the item that is needed in order for
+ a test to run. Multiple itemss may be given,
+ separated by a comma.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.IncludeExcludeAttribute.Exclude">
+ <summary>
+ Name of the item to be excluded. Multiple items
+ may be given, separated by a comma.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.IncludeExcludeAttribute.Reason">
+ <summary>
+ The reason for including or excluding the test
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.PlatformAttribute">
+ <summary>
+ PlatformAttribute is used to mark a test fixture or an
+ individual method as applying to a particular platform only.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.PlatformAttribute.#ctor">
+ <summary>
+ Constructor with no platforms specified, for use
+ with named property syntax.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.PlatformAttribute.#ctor(System.String)">
+ <summary>
+ Constructor taking one or more platforms
+ </summary>
+ <param name="platforms">Comma-deliminted list of platforms</param>
+ </member>
+ <member name="T:NUnit.Framework.CultureAttribute">
+ <summary>
+ CultureAttribute is used to mark a test fixture or an
+ individual method as applying to a particular Culture only.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.CultureAttribute.#ctor">
+ <summary>
+ Constructor with no cultures specified, for use
+ with named property syntax.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.CultureAttribute.#ctor(System.String)">
+ <summary>
+ Constructor taking one or more cultures
+ </summary>
+ <param name="cultures">Comma-deliminted list of cultures</param>
+ </member>
+ <member name="T:NUnit.Framework.CombinatorialAttribute">
+ <summary>
+ Marks a test to use a combinatorial join of any argument data
+ provided. NUnit will create a test case for every combination of
+ the arguments provided. This can result in a large number of test
+ cases and so should be used judiciously. This is the default join
+ type, so the attribute need not be used except as documentation.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.PropertyAttribute">
+ <summary>
+ PropertyAttribute is used to attach information to a test as a name/value pair..
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.String)">
+ <summary>
+ Construct a PropertyAttribute with a name and string value
+ </summary>
+ <param name="propertyName">The name of the property</param>
+ <param name="propertyValue">The property value</param>
+ </member>
+ <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Int32)">
+ <summary>
+ Construct a PropertyAttribute with a name and int value
+ </summary>
+ <param name="propertyName">The name of the property</param>
+ <param name="propertyValue">The property value</param>
+ </member>
+ <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.String,System.Double)">
+ <summary>
+ Construct a PropertyAttribute with a name and double value
+ </summary>
+ <param name="propertyName">The name of the property</param>
+ <param name="propertyValue">The property value</param>
+ </member>
+ <member name="M:NUnit.Framework.PropertyAttribute.#ctor">
+ <summary>
+ Constructor for derived classes that set the
+ property dictionary directly.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.PropertyAttribute.#ctor(System.Object)">
+ <summary>
+ Constructor for use by derived classes that use the
+ name of the type as the property name. Derived classes
+ must ensure that the Type of the property value is
+ a standard type supported by the BCL. Any custom
+ types will cause a serialization Exception when
+ in the client.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.PropertyAttribute.Properties">
+ <summary>
+ Gets the property dictionary for this attribute
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.CombinatorialAttribute.#ctor">
+ <summary>
+ Default constructor
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.PairwiseAttribute">
+ <summary>
+ Marks a test to use pairwise join of any argument data provided.
+ NUnit will attempt too excercise every pair of argument values at
+ least once, using as small a number of test cases as it can. With
+ only two arguments, this is the same as a combinatorial join.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.PairwiseAttribute.#ctor">
+ <summary>
+ Default constructor
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.SequentialAttribute">
+ <summary>
+ Marks a test to use a sequential join of any argument data
+ provided. NUnit will use arguements for each parameter in
+ sequence, generating test cases up to the largest number
+ of argument values provided and using null for any arguments
+ for which it runs out of values. Normally, this should be
+ used with the same number of arguments for each parameter.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.SequentialAttribute.#ctor">
+ <summary>
+ Default constructor
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.MaxTimeAttribute">
+ <summary>
+ Summary description for MaxTimeAttribute.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.MaxTimeAttribute.#ctor(System.Int32)">
+ <summary>
+ Construct a MaxTimeAttribute, given a time in milliseconds.
+ </summary>
+ <param name="milliseconds">The maximum elapsed time in milliseconds</param>
+ </member>
+ <member name="T:NUnit.Framework.RandomAttribute">
+ <summary>
+ RandomAttribute is used to supply a set of random values
+ to a single parameter of a parameterized test.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.ValuesAttribute">
+ <summary>
+ ValuesAttribute is used to provide literal arguments for
+ an individual parameter of a test.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.ParameterDataAttribute">
+ <summary>
+ Abstract base class for attributes that apply to parameters
+ and supply data for the parameter.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.ParameterDataAttribute.GetData(System.Reflection.ParameterInfo)">
+ <summary>
+ Gets the data to be provided to the specified parameter
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.ValuesAttribute.data">
+ <summary>
+ The collection of data to be returned. Must
+ be set by any derived attribute classes.
+ We use an object[] so that the individual
+ elements may have their type changed in GetData
+ if necessary.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object)">
+ <summary>
+ Construct with one argument
+ </summary>
+ <param name="arg1"></param>
+ </member>
+ <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object)">
+ <summary>
+ Construct with two arguments
+ </summary>
+ <param name="arg1"></param>
+ <param name="arg2"></param>
+ </member>
+ <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object,System.Object,System.Object)">
+ <summary>
+ Construct with three arguments
+ </summary>
+ <param name="arg1"></param>
+ <param name="arg2"></param>
+ <param name="arg3"></param>
+ </member>
+ <member name="M:NUnit.Framework.ValuesAttribute.#ctor(System.Object[])">
+ <summary>
+ Construct with an array of arguments
+ </summary>
+ <param name="args"></param>
+ </member>
+ <member name="M:NUnit.Framework.ValuesAttribute.GetData(System.Reflection.ParameterInfo)">
+ <summary>
+ Get the collection of values to be used as arguments
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32)">
+ <summary>
+ Construct a set of doubles from 0.0 to 1.0,
+ specifying only the count.
+ </summary>
+ <param name="count"></param>
+ </member>
+ <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Double,System.Double,System.Int32)">
+ <summary>
+ Construct a set of doubles from min to max
+ </summary>
+ <param name="min"></param>
+ <param name="max"></param>
+ <param name="count"></param>
+ </member>
+ <member name="M:NUnit.Framework.RandomAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
+ <summary>
+ Construct a set of ints from min to max
+ </summary>
+ <param name="min"></param>
+ <param name="max"></param>
+ <param name="count"></param>
+ </member>
+ <member name="M:NUnit.Framework.RandomAttribute.GetData(System.Reflection.ParameterInfo)">
+ <summary>
+ Get the collection of values to be used as arguments
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.RangeAttribute">
+ <summary>
+ RangeAttribute is used to supply a range of values to an
+ individual parameter of a parameterized test.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32)">
+ <summary>
+ Construct a range of ints using default step of 1
+ </summary>
+ <param name="from"></param>
+ <param name="to"></param>
+ </member>
+ <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
+ <summary>
+ Construct a range of ints specifying the step size
+ </summary>
+ <param name="from"></param>
+ <param name="to"></param>
+ <param name="step"></param>
+ </member>
+ <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Int64,System.Int64,System.Int64)">
+ <summary>
+ Construct a range of longs
+ </summary>
+ <param name="from"></param>
+ <param name="to"></param>
+ <param name="step"></param>
+ </member>
+ <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Double,System.Double,System.Double)">
+ <summary>
+ Construct a range of doubles
+ </summary>
+ <param name="from"></param>
+ <param name="to"></param>
+ <param name="step"></param>
+ </member>
+ <member name="M:NUnit.Framework.RangeAttribute.#ctor(System.Single,System.Single,System.Single)">
+ <summary>
+ Construct a range of floats
+ </summary>
+ <param name="from"></param>
+ <param name="to"></param>
+ <param name="step"></param>
+ </member>
+ <member name="T:NUnit.Framework.RepeatAttribute">
+ <summary>
+ RepeatAttribute may be applied to test case in order
+ to run it multiple times.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.RepeatAttribute.#ctor(System.Int32)">
+ <summary>
+ Construct a RepeatAttribute
+ </summary>
+ <param name="count">The number of times to run the test</param>
+ </member>
+ <member name="T:NUnit.Framework.RequiredAddinAttribute">
+ <summary>
+ RequiredAddinAttribute may be used to indicate the names of any addins
+ that must be present in order to run some or all of the tests in an
+ assembly. If the addin is not loaded, the entire assembly is marked
+ as NotRunnable.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.RequiredAddinAttribute.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:RequiredAddinAttribute"/> class.
+ </summary>
+ <param name="requiredAddin">The required addin.</param>
+ </member>
+ <member name="P:NUnit.Framework.RequiredAddinAttribute.RequiredAddin">
+ <summary>
+ Gets the name of required addin.
+ </summary>
+ <value>The required addin name.</value>
+ </member>
+ <member name="T:NUnit.Framework.SetCultureAttribute">
+ <summary>
+ Summary description for SetCultureAttribute.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.SetCultureAttribute.#ctor(System.String)">
+ <summary>
+ Construct given the name of a culture
+ </summary>
+ <param name="culture"></param>
+ </member>
+ <member name="T:NUnit.Framework.SetUICultureAttribute">
+ <summary>
+ Summary description for SetUICultureAttribute.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.SetUICultureAttribute.#ctor(System.String)">
+ <summary>
+ Construct given the name of a culture
+ </summary>
+ <param name="culture"></param>
+ </member>
+ <member name="T:NUnit.Framework.SetUpAttribute">
+ <summary>
+ Attribute used to mark a class that contains one-time SetUp
+ and/or TearDown methods that apply to all the tests in a
+ namespace or an assembly.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.SetUpFixtureAttribute">
+ <summary>
+ SetUpFixtureAttribute is used to identify a SetUpFixture
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.SuiteAttribute">
+ <summary>
+ Attribute used to mark a static (shared in VB) property
+ that returns a list of tests.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TearDownAttribute">
+ <summary>
+ Attribute used to identify a method that is called
+ immediately after each test is run. The method is
+ guaranteed to be called, even if an exception is thrown.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TestAttribute">
+ <summary>
+ Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
+ class makes the method callable from the NUnit test runner. There is a property
+ called Description which is optional which you can provide a more detailed test
+ description. This class cannot be inherited.
+ </summary>
+
+ <example>
+ [TestFixture]
+ public class Fixture
+ {
+ [Test]
+ public void MethodToTest()
+ {}
+
+ [Test(Description = "more detailed description")]
+ publc void TestDescriptionMethod()
+ {}
+ }
+ </example>
+
+ </member>
+ <member name="P:NUnit.Framework.TestAttribute.Description">
+ <summary>
+ Descriptive text for this test
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TestCaseAttribute">
+ <summary>
+ TestCaseAttribute is used to mark parameterized test cases
+ and provide them with their arguments.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.ITestCaseData">
+ <summary>
+ The ITestCaseData interface is implemented by a class
+ that is able to return complete testcases for use by
+ a parameterized test method.
+
+ NOTE: This interface is used in both the framework
+ and the core, even though that results in two different
+ types. However, sharing the source code guarantees that
+ the various implementations will be compatible and that
+ the core is able to reflect successfully over the
+ framework implementations of ITestCaseData.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ITestCaseData.Arguments">
+ <summary>
+ Gets the argument list to be provided to the test
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ITestCaseData.Result">
+ <summary>
+ Gets the expected result
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ITestCaseData.ExpectedException">
+ <summary>
+ Gets the expected exception Type
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ITestCaseData.ExpectedExceptionName">
+ <summary>
+ Gets the FullName of the expected exception
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ITestCaseData.TestName">
+ <summary>
+ Gets the name to be used for the test
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ITestCaseData.Description">
+ <summary>
+ Gets the description of the test
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ITestCaseData.Ignored">
+ <summary>
+ Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
+ </summary>
+ <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:NUnit.Framework.ITestCaseData.IgnoreReason">
+ <summary>
+ Gets the ignore reason.
+ </summary>
+ <value>The ignore reason.</value>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object[])">
+ <summary>
+ Construct a TestCaseAttribute with a list of arguments.
+ This constructor is not CLS-Compliant
+ </summary>
+ <param name="arguments"></param>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object)">
+ <summary>
+ Construct a TestCaseAttribute with a single argument
+ </summary>
+ <param name="arg"></param>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object)">
+ <summary>
+ Construct a TestCaseAttribute with a two arguments
+ </summary>
+ <param name="arg1"></param>
+ <param name="arg2"></param>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseAttribute.#ctor(System.Object,System.Object,System.Object)">
+ <summary>
+ Construct a TestCaseAttribute with a three arguments
+ </summary>
+ <param name="arg1"></param>
+ <param name="arg2"></param>
+ <param name="arg3"></param>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.Arguments">
+ <summary>
+ Gets the list of arguments to a test case
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.Result">
+ <summary>
+ Gets or sets the expected result.
+ </summary>
+ <value>The result.</value>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.Categories">
+ <summary>
+ Gets a list of categories associated with this test;
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.Category">
+ <summary>
+ Gets or sets the category associated with this test.
+ May be a single category or a comma-separated list.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedException">
+ <summary>
+ Gets or sets the expected exception.
+ </summary>
+ <value>The expected exception.</value>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedExceptionName">
+ <summary>
+ Gets or sets the name the expected exception.
+ </summary>
+ <value>The expected name of the exception.</value>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.ExpectedMessage">
+ <summary>
+ Gets or sets the expected message of the expected exception
+ </summary>
+ <value>The expected message of the exception.</value>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.MatchType">
+ <summary>
+ Gets or sets the type of match to be performed on the expected message
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.Description">
+ <summary>
+ Gets or sets the description.
+ </summary>
+ <value>The description.</value>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.TestName">
+ <summary>
+ Gets or sets the name of the test.
+ </summary>
+ <value>The name of the test.</value>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.Ignore">
+ <summary>
+ Gets or sets the ignored status of the test
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.Ignored">
+ <summary>
+ Gets or sets the ignored status of the test
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseAttribute.IgnoreReason">
+ <summary>
+ Gets the ignore reason.
+ </summary>
+ <value>The ignore reason.</value>
+ </member>
+ <member name="T:NUnit.Framework.TestCaseSourceAttribute">
+ <summary>
+ FactoryAttribute indicates the source to be used to
+ provide test cases for a test method.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.String)">
+ <summary>
+ Construct with the name of the factory - for use with languages
+ that don't support params arrays.
+ </summary>
+ <param name="sourceName">An array of the names of the factories that will provide data</param>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseSourceAttribute.#ctor(System.Type,System.String)">
+ <summary>
+ Construct with a Type and name - for use with languages
+ that don't support params arrays.
+ </summary>
+ <param name="sourceType">The Type that will provide data</param>
+ <param name="sourceName">The name of the method, property or field that will provide data</param>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceName">
+ <summary>
+ The name of a the method, property or fiend to be used as a source
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseSourceAttribute.SourceType">
+ <summary>
+ A Type to be used as a source
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TestFixtureAttribute">
+ <example>
+ [TestFixture]
+ public class ExampleClass
+ {}
+ </example>
+ </member>
+ <member name="M:NUnit.Framework.TestFixtureAttribute.#ctor">
+ <summary>
+ Default constructor
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.TestFixtureAttribute.#ctor(System.Object[])">
+ <summary>
+ Construct with a object[] representing a set of arguments.
+ In .NET 2.0, the arguments may later be separated into
+ type arguments and constructor arguments.
+ </summary>
+ <param name="arguments"></param>
+ </member>
+ <member name="P:NUnit.Framework.TestFixtureAttribute.Description">
+ <summary>
+ Descriptive text for this fixture
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestFixtureAttribute.Category">
+ <summary>
+ Gets and sets the category for this fixture.
+ May be a comma-separated list of categories.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestFixtureAttribute.Categories">
+ <summary>
+ Gets a list of categories for this fixture
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestFixtureAttribute.Arguments">
+ <summary>
+ The arguments originally provided to the attribute
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestFixtureAttribute.Ignore">
+ <summary>
+ Gets or sets a value indicating whether this <see cref="T:NUnit.Framework.TestFixtureAttribute"/> should be ignored.
+ </summary>
+ <value><c>true</c> if ignore; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:NUnit.Framework.TestFixtureAttribute.IgnoreReason">
+ <summary>
+ Gets or sets the ignore reason. May set Ignored as a side effect.
+ </summary>
+ <value>The ignore reason.</value>
+ </member>
+ <member name="P:NUnit.Framework.TestFixtureAttribute.TypeArgs">
+ <summary>
+ Get or set the type arguments. If not set
+ explicitly, any leading arguments that are
+ Types are taken as type arguments.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TestFixtureSetUpAttribute">
+ <summary>
+ Attribute used to identify a method that is
+ called before any tests in a fixture are run.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TestFixtureTearDownAttribute">
+ <summary>
+ Attribute used to identify a method that is called after
+ all the tests in a fixture have run. The method is
+ guaranteed to be called, even if an exception is thrown.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TheoryAttribute">
+ <summary>
+ Adding this attribute to a method within a <seealso cref="T:NUnit.Framework.TestFixtureAttribute"/>
+ class makes the method callable from the NUnit test runner. There is a property
+ called Description which is optional which you can provide a more detailed test
+ description. This class cannot be inherited.
+ </summary>
+
+ <example>
+ [TestFixture]
+ public class Fixture
+ {
+ [Test]
+ public void MethodToTest()
+ {}
+
+ [Test(Description = "more detailed description")]
+ publc void TestDescriptionMethod()
+ {}
+ }
+ </example>
+
+ </member>
+ <member name="T:NUnit.Framework.TimeoutAttribute">
+ <summary>
+ WUsed on a method, marks the test with a timeout value in milliseconds.
+ The test will be run in a separate thread and is cancelled if the timeout
+ is exceeded. Used on a method or assembly, sets the default timeout
+ for all contained test methods.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.TimeoutAttribute.#ctor(System.Int32)">
+ <summary>
+ Construct a TimeoutAttribute given a time in milliseconds
+ </summary>
+ <param name="timeout">The timeout value in milliseconds</param>
+ </member>
+ <member name="T:NUnit.Framework.RequiresSTAAttribute">
+ <summary>
+ Marks a test that must run in the STA, causing it
+ to run in a separate thread if necessary.
+
+ On methods, you may also use STAThreadAttribute
+ to serve the same purpose.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.RequiresSTAAttribute.#ctor">
+ <summary>
+ Construct a RequiresSTAAttribute
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.RequiresMTAAttribute">
+ <summary>
+ Marks a test that must run in the MTA, causing it
+ to run in a separate thread if necessary.
+
+ On methods, you may also use MTAThreadAttribute
+ to serve the same purpose.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.RequiresMTAAttribute.#ctor">
+ <summary>
+ Construct a RequiresMTAAttribute
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.RequiresThreadAttribute">
+ <summary>
+ Marks a test that must run on a separate thread.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor">
+ <summary>
+ Construct a RequiresThreadAttribute
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.RequiresThreadAttribute.#ctor(System.Threading.ApartmentState)">
+ <summary>
+ Construct a RequiresThreadAttribute, specifying the apartment
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.ValueSourceAttribute">
+ <summary>
+ ValueSourceAttribute indicates the source to be used to
+ provide data for one parameter of a test method.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.String)">
+ <summary>
+ Construct with the name of the factory - for use with languages
+ that don't support params arrays.
+ </summary>
+ <param name="sourceName">The name of the data source to be used</param>
+ </member>
+ <member name="M:NUnit.Framework.ValueSourceAttribute.#ctor(System.Type,System.String)">
+ <summary>
+ Construct with a Type and name - for use with languages
+ that don't support params arrays.
+ </summary>
+ <param name="sourceType">The Type that will provide data</param>
+ <param name="sourceName">The name of the method, property or field that will provide data</param>
+ </member>
+ <member name="P:NUnit.Framework.ValueSourceAttribute.SourceName">
+ <summary>
+ The name of a the method, property or fiend to be used as a source
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.ValueSourceAttribute.SourceType">
+ <summary>
+ A Type to be used as a source
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.AttributeExistsConstraint">
+ <summary>
+ AttributeExistsConstraint tests for the presence of a
+ specified attribute on a Type.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.Constraint">
+ <summary>
+ The Constraint class is the base of all built-in constraints
+ within NUnit. It provides the operator overloads used to combine
+ constraints.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.IResolveConstraint">
+ <summary>
+ The IConstraintExpression interface is implemented by all
+ complete and resolvable constraints and expressions.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.IResolveConstraint.Resolve">
+ <summary>
+ Return the top-level constraint for this expression
+ </summary>
+ <returns></returns>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.Constraint.UNSET">
+ <summary>
+ Static UnsetObject used to detect derived constraints
+ failing to set the actual value.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.Constraint.actual">
+ <summary>
+ The actual value being tested against a constraint
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.Constraint.displayName">
+ <summary>
+ The display name of this Constraint for use by ToString()
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.Constraint.argcnt">
+ <summary>
+ Argument fields used by ToString();
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.Constraint.builder">
+ <summary>
+ The builder holding this constraint
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.#ctor">
+ <summary>
+ Construct a constraint with no arguments
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object)">
+ <summary>
+ Construct a constraint with one argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.#ctor(System.Object,System.Object)">
+ <summary>
+ Construct a constraint with two arguments
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.SetBuilder(NUnit.Framework.Constraints.ConstraintBuilder)">
+ <summary>
+ Sets the ConstraintBuilder holding this constraint
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the failure message to the MessageWriter provided
+ as an argument. The default implementation simply passes
+ the constraint and the actual value to the writer, which
+ then displays the constraint description and the value.
+
+ Constraints that need to provide additional details,
+ such as where the error occured can override this.
+ </summary>
+ <param name="writer">The MessageWriter on which to display the message</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)">
+ <summary>
+ Test whether the constraint is satisfied by an
+ ActualValueDelegate that returns the value to be tested.
+ The default implementation simply evaluates the delegate
+ but derived classes may override it to provide for delayed
+ processing.
+ </summary>
+ <param name="del">An ActualValueDelegate</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.Matches``1(``0@)">
+ <summary>
+ Test whether the constraint is satisfied by a given reference.
+ The default implementation simply dereferences the value but
+ derived classes may override it to provide for delayed processing.
+ </summary>
+ <param name="actual">A reference to the value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the actual value for a failing constraint test to a
+ MessageWriter. The default implementation simply writes
+ the raw value of actual, leaving it to the writer to
+ perform any formatting.
+ </summary>
+ <param name="writer">The writer on which the actual value is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.ToString">
+ <summary>
+ Default override of ToString returns the constraint DisplayName
+ followed by any arguments within angle brackets.
+ </summary>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.GetStringRepresentation">
+ <summary>
+ Returns the string representation of this constraint
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ This operator creates a constraint that is satisfied only if both
+ argument constraints are satisfied.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ This operator creates a constraint that is satisfied if either
+ of the argument constraints is satisfied.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.op_LogicalNot(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ This operator creates a constraint that is satisfied if the
+ argument constraint is not satisfied.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.After(System.Int32)">
+ <summary>
+ Returns a DelayedConstraint with the specified delay time.
+ </summary>
+ <param name="delayInMilliseconds">The delay in milliseconds.</param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Constraint.After(System.Int32,System.Int32)">
+ <summary>
+ Returns a DelayedConstraint with the specified delay time
+ and polling interval.
+ </summary>
+ <param name="delayInMilliseconds">The delay in milliseconds.</param>
+ <param name="pollingInterval">The interval at which to test the constraint.</param>
+ <returns></returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Constraint.DisplayName">
+ <summary>
+ The display name of this Constraint for use by ToString().
+ The default value is the name of the constraint with
+ trailing "Constraint" removed. Derived classes may set
+ this to another name in their constructors.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Constraint.And">
+ <summary>
+ Returns a ConstraintExpression by appending And
+ to the current constraint.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Constraint.With">
+ <summary>
+ Returns a ConstraintExpression by appending And
+ to the current constraint.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Constraint.Or">
+ <summary>
+ Returns a ConstraintExpression by appending Or
+ to the current constraint.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.Constraint.UnsetObject">
+ <summary>
+ Class used to detect any derived constraints
+ that fail to set the actual value in their
+ Matches override.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.#ctor(System.Type)">
+ <summary>
+ Constructs an AttributeExistsConstraint for a specific attribute Type
+ </summary>
+ <param name="type"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.Matches(System.Object)">
+ <summary>
+ Tests whether the object provides the expected attribute.
+ </summary>
+ <param name="actual">A Type, MethodInfo, or other ICustomAttributeProvider</param>
+ <returns>True if the expected attribute is present, otherwise false</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AttributeExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Writes the description of the constraint to the specified writer
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.AttributeConstraint">
+ <summary>
+ AttributeConstraint tests that a specified attribute is present
+ on a Type or other provider and that the value of the attribute
+ satisfies some other constraint.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.PrefixConstraint">
+ <summary>
+ Abstract base class used for prefixes
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.PrefixConstraint.baseConstraint">
+ <summary>
+ The base constraint
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PrefixConstraint.#ctor(NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Construct given a base constraint
+ </summary>
+ <param name="resolvable"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AttributeConstraint.#ctor(System.Type,NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Constructs an AttributeConstraint for a specified attriute
+ Type and base constraint.
+ </summary>
+ <param name="type"></param>
+ <param name="baseConstraint"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AttributeConstraint.Matches(System.Object)">
+ <summary>
+ Determines whether the Type or other provider has the
+ expected attribute and if its value matches the
+ additional constraint specified.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AttributeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Writes a description of the attribute to the specified writer.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AttributeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Writes the actual value supplied to the specified writer.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AttributeConstraint.GetStringRepresentation">
+ <summary>
+ Returns a string representation of the constraint.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.BasicConstraint">
+ <summary>
+ BasicConstraint is the abstract base for constraints that
+ perform a simple comparison to a constant value.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.BasicConstraint.#ctor(System.Object,System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:BasicConstraint"/> class.
+ </summary>
+ <param name="expected">The expected.</param>
+ <param name="description">The description.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.BasicConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.BasicConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.NullConstraint">
+ <summary>
+ NullConstraint tests that the actual value is null
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NullConstraint.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:NullConstraint"/> class.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.TrueConstraint">
+ <summary>
+ TrueConstraint tests that the actual value is true
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.TrueConstraint.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:TrueConstraint"/> class.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.FalseConstraint">
+ <summary>
+ FalseConstraint tests that the actual value is false
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.FalseConstraint.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:FalseConstraint"/> class.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.NaNConstraint">
+ <summary>
+ NaNConstraint tests that the actual value is a double or float NaN
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NaNConstraint.Matches(System.Object)">
+ <summary>
+ Test that the actual value is an NaN
+ </summary>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NaNConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a specified writer
+ </summary>
+ <param name="writer"></param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.BinaryConstraint">
+ <summary>
+ BinaryConstraint is the abstract base of all constraints
+ that combine two other constraints in some fashion.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.BinaryConstraint.left">
+ <summary>
+ The first constraint being combined
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.BinaryConstraint.right">
+ <summary>
+ The second constraint being combined
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.BinaryConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Construct a BinaryConstraint from two other constraints
+ </summary>
+ <param name="left">The first constraint</param>
+ <param name="right">The second constraint</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.AndConstraint">
+ <summary>
+ AndConstraint succeeds only if both members succeed.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AndConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Create an AndConstraint from two other constraints
+ </summary>
+ <param name="left">The first constraint</param>
+ <param name="right">The second constraint</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AndConstraint.Matches(System.Object)">
+ <summary>
+ Apply both member constraints to an actual value, succeeding
+ succeeding only if both of them succeed.
+ </summary>
+ <param name="actual">The actual value</param>
+ <returns>True if the constraints both succeeded</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a description for this contraint to a MessageWriter
+ </summary>
+ <param name="writer">The MessageWriter to receive the description</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AndConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the actual value for a failing constraint test to a
+ MessageWriter. The default implementation simply writes
+ the raw value of actual, leaving it to the writer to
+ perform any formatting.
+ </summary>
+ <param name="writer">The writer on which the actual value is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.OrConstraint">
+ <summary>
+ OrConstraint succeeds if either member succeeds
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.OrConstraint.#ctor(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Create an OrConstraint from two other constraints
+ </summary>
+ <param name="left">The first constraint</param>
+ <param name="right">The second constraint</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.OrConstraint.Matches(System.Object)">
+ <summary>
+ Apply the member constraints to an actual value, succeeding
+ succeeding as soon as one of them succeeds.
+ </summary>
+ <param name="actual">The actual value</param>
+ <returns>True if either constraint succeeded</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.OrConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a description for this contraint to a MessageWriter
+ </summary>
+ <param name="writer">The MessageWriter to receive the description</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.CollectionConstraint">
+ <summary>
+ CollectionConstraint is the abstract base class for
+ constraints that operate on collections.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionConstraint.#ctor">
+ <summary>
+ Construct an empty CollectionConstraint
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionConstraint.#ctor(System.Object)">
+ <summary>
+ Construct a CollectionConstraint
+ </summary>
+ <param name="arg"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionConstraint.IsEmpty(System.Collections.IEnumerable)">
+ <summary>
+ Determines whether the specified enumerable is empty.
+ </summary>
+ <param name="enumerable">The enumerable.</param>
+ <returns>
+ <c>true</c> if the specified enumerable is empty; otherwise, <c>false</c>.
+ </returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionConstraint.doMatch(System.Collections.IEnumerable)">
+ <summary>
+ Protected method to be implemented by derived classes
+ </summary>
+ <param name="collection"></param>
+ <returns></returns>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.CollectionItemsEqualConstraint">
+ <summary>
+ CollectionItemsEqualConstraint is the abstract base class for all
+ collection constraints that apply some notion of item equality
+ as a part of their operation.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor">
+ <summary>
+ Construct an empty CollectionConstraint
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.#ctor(System.Object)">
+ <summary>
+ Construct a CollectionConstraint
+ </summary>
+ <param name="arg"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IComparer)">
+ <summary>
+ Flag the constraint to use the supplied IComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
+ <summary>
+ Flag the constraint to use the supplied IComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Comparison{``0})">
+ <summary>
+ Flag the constraint to use the supplied Comparison object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using(System.Collections.IEqualityComparer)">
+ <summary>
+ Flag the constraint to use the supplied IEqualityComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
+ <summary>
+ Flag the constraint to use the supplied IEqualityComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.ItemsEqual(System.Object,System.Object)">
+ <summary>
+ Compares two collection members for equality
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.Tally(System.Collections.IEnumerable)">
+ <summary>
+ Return a new CollectionTally for use in making tests
+ </summary>
+ <param name="c">The collection to be included in the tally</param>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.CollectionItemsEqualConstraint.IgnoreCase">
+ <summary>
+ Flag the constraint to ignore case and return self.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.EmptyCollectionConstraint">
+ <summary>
+ EmptyCollectionConstraint tests whether a collection is empty.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.doMatch(System.Collections.IEnumerable)">
+ <summary>
+ Check that the collection is empty
+ </summary>
+ <param name="collection"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EmptyCollectionConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer"></param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.UniqueItemsConstraint">
+ <summary>
+ UniqueItemsConstraint tests whether all the items in a
+ collection are unique.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.doMatch(System.Collections.IEnumerable)">
+ <summary>
+ Check that all items are unique.
+ </summary>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.UniqueItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a description of this constraint to a MessageWriter
+ </summary>
+ <param name="writer"></param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.CollectionContainsConstraint">
+ <summary>
+ CollectionContainsConstraint is used to test whether a collection
+ contains an expected object as a member.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.#ctor(System.Object)">
+ <summary>
+ Construct a CollectionContainsConstraint
+ </summary>
+ <param name="expected"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.doMatch(System.Collections.IEnumerable)">
+ <summary>
+ Test whether the expected item is contained in the collection
+ </summary>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a descripton of the constraint to a MessageWriter
+ </summary>
+ <param name="writer"></param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.CollectionEquivalentConstraint">
+ <summary>
+ CollectionEquivalentCOnstraint is used to determine whether two
+ collections are equivalent.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.#ctor(System.Collections.IEnumerable)">
+ <summary>
+ Construct a CollectionEquivalentConstraint
+ </summary>
+ <param name="expected"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.doMatch(System.Collections.IEnumerable)">
+ <summary>
+ Test whether two collections are equivalent
+ </summary>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionEquivalentConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a description of this constraint to a MessageWriter
+ </summary>
+ <param name="writer"></param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.CollectionSubsetConstraint">
+ <summary>
+ CollectionSubsetConstraint is used to determine whether
+ one collection is a subset of another
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.#ctor(System.Collections.IEnumerable)">
+ <summary>
+ Construct a CollectionSubsetConstraint
+ </summary>
+ <param name="expected">The collection that the actual value is expected to be a subset of</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.doMatch(System.Collections.IEnumerable)">
+ <summary>
+ Test whether the actual collection is a subset of
+ the expected collection provided.
+ </summary>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionSubsetConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a description of this constraint to a MessageWriter
+ </summary>
+ <param name="writer"></param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.CollectionOrderedConstraint">
+ <summary>
+ CollectionOrderedConstraint is used to test whether a collection is ordered.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.#ctor">
+ <summary>
+ Construct a CollectionOrderedConstraint
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using(System.Collections.IComparer)">
+ <summary>
+ Modifies the constraint to use an IComparer and returns self.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
+ <summary>
+ Modifies the constraint to use an IComparer<T> and returns self.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.Using``1(System.Comparison{``0})">
+ <summary>
+ Modifies the constraint to use a Comparison<T> and returns self.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.By(System.String)">
+ <summary>
+ Modifies the constraint to test ordering by the value of
+ a specified property and returns self.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.doMatch(System.Collections.IEnumerable)">
+ <summary>
+ Test whether the collection is ordered
+ </summary>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a description of the constraint to a MessageWriter
+ </summary>
+ <param name="writer"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionOrderedConstraint.GetStringRepresentation">
+ <summary>
+ Returns the string representation of the constraint.
+ </summary>
+ <returns></returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.CollectionOrderedConstraint.Descending">
+ <summary>
+ If used performs a reverse comparison
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.CollectionTally">
+ <summary>
+ CollectionTally counts (tallies) the number of
+ occurences of each object in one or more enumerations.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionTally.#ctor(NUnit.Framework.Constraints.NUnitEqualityComparer,System.Collections.IEnumerable)">
+ <summary>
+ Construct a CollectionTally object from a comparer and a collection
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionTally.TryRemove(System.Object)">
+ <summary>
+ Try to remove an object from the tally
+ </summary>
+ <param name="o">The object to remove</param>
+ <returns>True if successful, false if the object was not found</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionTally.TryRemove(System.Collections.IEnumerable)">
+ <summary>
+ Try to remove a set of objects from the tally
+ </summary>
+ <param name="c">The objects to remove</param>
+ <returns>True if successful, false if any object was not found</returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.CollectionTally.Count">
+ <summary>
+ The number of objects remaining in the tally
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ComparisonAdapter">
+ <summary>
+ ComparisonAdapter class centralizes all comparisons of
+ values in NUnit, adapting to the use of any provided
+ IComparer, IComparer<T> or Comparison<T>
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For(System.Collections.IComparer)">
+ <summary>
+ Returns a ComparisonAdapter that wraps an IComparer
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Collections.Generic.IComparer{``0})">
+ <summary>
+ Returns a ComparisonAdapter that wraps an IComparer<T>
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.For``1(System.Comparison{``0})">
+ <summary>
+ Returns a ComparisonAdapter that wraps a Comparison<T>
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.Compare(System.Object,System.Object)">
+ <summary>
+ Compares two objects
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ComparisonAdapter.Default">
+ <summary>
+ Gets the default ComparisonAdapter, which wraps an
+ NUnitComparer object.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.#ctor(System.Collections.IComparer)">
+ <summary>
+ Construct a ComparisonAdapter for an IComparer
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter.Compare(System.Object,System.Object)">
+ <summary>
+ Compares two objects
+ </summary>
+ <param name="expected"></param>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.DefaultComparisonAdapter.#ctor">
+ <summary>
+ Construct a default ComparisonAdapter
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1">
+ <summary>
+ ComparisonAdapter<T> extends ComparisonAdapter and
+ allows use of an IComparer<T> or Comparison<T>
+ to actually perform the comparison.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.#ctor(System.Collections.Generic.IComparer{`0})">
+ <summary>
+ Construct a ComparisonAdapter for an IComparer<T>
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparerAdapter`1.Compare(System.Object,System.Object)">
+ <summary>
+ Compare a Type T to an object
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.#ctor(System.Comparison{`0})">
+ <summary>
+ Construct a ComparisonAdapter for a Comparison<T>
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonAdapter.ComparisonAdapterForComparison`1.Compare(System.Object,System.Object)">
+ <summary>
+ Compare a Type T to an object
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ComparisonConstraint">
+ <summary>
+ Abstract base class for constraints that compare values to
+ determine if one is greater than, equal to or less than
+ the other.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.expected">
+ <summary>
+ The value against which a comparison is to be made
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.ltOK">
+ <summary>
+ If true, less than returns success
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.eqOK">
+ <summary>
+ if true, equal returns success
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.gtOK">
+ <summary>
+ if true, greater than returns success
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.predicate">
+ <summary>
+ The predicate used as a part of the description
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ComparisonConstraint.comparer">
+ <summary>
+ ComparisonAdapter to be used in making the comparison
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.#ctor(System.Object,System.Boolean,System.Boolean,System.Boolean,System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:ComparisonConstraint"/> class.
+ </summary>
+ <param name="value">The value against which to make a comparison.</param>
+ <param name="ltOK">if set to <c>true</c> less succeeds.</param>
+ <param name="eqOK">if set to <c>true</c> equal succeeds.</param>
+ <param name="gtOK">if set to <c>true</c> greater succeeds.</param>
+ <param name="predicate">String used in describing the constraint.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using(System.Collections.IComparer)">
+ <summary>
+ Modifies the constraint to use an IComparer and returns self
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
+ <summary>
+ Modifies the constraint to use an IComparer<T> and returns self
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ComparisonConstraint.Using``1(System.Comparison{``0})">
+ <summary>
+ Modifies the constraint to use a Comparison<T> and returns self
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.GreaterThanConstraint">
+ <summary>
+ Tests whether a value is greater than the value supplied to its constructor
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.GreaterThanConstraint.#ctor(System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:GreaterThanConstraint"/> class.
+ </summary>
+ <param name="expected">The expected value.</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint">
+ <summary>
+ Tests whether a value is greater than or equal to the value supplied to its constructor
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.GreaterThanOrEqualConstraint.#ctor(System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:GreaterThanOrEqualConstraint"/> class.
+ </summary>
+ <param name="expected">The expected value.</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.LessThanConstraint">
+ <summary>
+ Tests whether a value is less than the value supplied to its constructor
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.LessThanConstraint.#ctor(System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:LessThanConstraint"/> class.
+ </summary>
+ <param name="expected">The expected value.</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.LessThanOrEqualConstraint">
+ <summary>
+ Tests whether a value is less than or equal to the value supplied to its constructor
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.LessThanOrEqualConstraint.#ctor(System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:LessThanOrEqualConstraint"/> class.
+ </summary>
+ <param name="expected">The expected value.</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ActualValueDelegate">
+ <summary>
+ Delegate used to delay evaluation of the actual value
+ to be used in evaluating a constraint
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ConstraintBuilder">
+ <summary>
+ ConstraintBuilder maintains the stacks that are used in
+ processing a ConstraintExpression. An OperatorStack
+ is used to hold operators that are waiting for their
+ operands to be reognized. a ConstraintStack holds
+ input constraints as well as the results of each
+ operator applied.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:ConstraintBuilder"/> class.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.ConstraintOperator)">
+ <summary>
+ Appends the specified operator to the expression by first
+ reducing the operator stack and then pushing the new
+ operator on the stack.
+ </summary>
+ <param name="op">The operator to push.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Append(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Appends the specified constraint to the expresson by pushing
+ it on the constraint stack.
+ </summary>
+ <param name="constraint">The constraint to push.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.SetTopOperatorRightContext(System.Object)">
+ <summary>
+ Sets the top operator right context.
+ </summary>
+ <param name="rightContext">The right context.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ReduceOperatorStack(System.Int32)">
+ <summary>
+ Reduces the operator stack until the topmost item
+ precedence is greater than or equal to the target precedence.
+ </summary>
+ <param name="targetPrecedence">The target precedence.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.Resolve">
+ <summary>
+ Resolves this instance, returning a Constraint. If the builder
+ is not currently in a resolvable state, an exception is thrown.
+ </summary>
+ <returns>The resolved constraint</returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.IsResolvable">
+ <summary>
+ Gets a value indicating whether this instance is resolvable.
+ </summary>
+ <value>
+ <c>true</c> if this instance is resolvable; otherwise, <c>false</c>.
+ </value>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack">
+ <summary>
+ OperatorStack is a type-safe stack for holding ConstraintOperators
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
+ <summary>
+ Initializes a new instance of the <see cref="T:OperatorStack"/> class.
+ </summary>
+ <param name="builder">The builder.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Push(NUnit.Framework.Constraints.ConstraintOperator)">
+ <summary>
+ Pushes the specified operator onto the stack.
+ </summary>
+ <param name="op">The op.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Pop">
+ <summary>
+ Pops the topmost operator from the stack.
+ </summary>
+ <returns></returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Empty">
+ <summary>
+ Gets a value indicating whether this <see cref="T:OpStack"/> is empty.
+ </summary>
+ <value><c>true</c> if empty; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.OperatorStack.Top">
+ <summary>
+ Gets the topmost operator without modifying the stack.
+ </summary>
+ <value>The top.</value>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack">
+ <summary>
+ ConstraintStack is a type-safe stack for holding Constraints
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
+ <summary>
+ Initializes a new instance of the <see cref="T:ConstraintStack"/> class.
+ </summary>
+ <param name="builder">The builder.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Push(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Pushes the specified constraint. As a side effect,
+ the constraint's builder field is set to the
+ ConstraintBuilder owning this stack.
+ </summary>
+ <param name="constraint">The constraint.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Pop">
+ <summary>
+ Pops this topmost constrait from the stack.
+ As a side effect, the constraint's builder
+ field is set to null.
+ </summary>
+ <returns></returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Empty">
+ <summary>
+ Gets a value indicating whether this <see cref="T:ConstraintStack"/> is empty.
+ </summary>
+ <value><c>true</c> if empty; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack.Top">
+ <summary>
+ Gets the topmost constraint without modifying the stack.
+ </summary>
+ <value>The topmost constraint</value>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ConstraintExpression">
+ <summary>
+ ConstraintExpression represents a compound constraint in the
+ process of being constructed from a series of syntactic elements.
+
+ Individual elements are appended to the expression as they are
+ reognized. Once an actual Constraint is appended, the expression
+ returns a resolvable Constraint.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ConstraintExpressionBase">
+ <summary>
+ ConstraintExpressionBase is the abstract base class for the
+ generated ConstraintExpression class, which represents a
+ compound constraint in the process of being constructed
+ from a series of syntactic elements.
+
+ NOTE: ConstraintExpressionBase is aware of some of its
+ derived classes, which is an apparent violation of
+ encapsulation. Ideally, these classes would be a
+ single class, but they must be separated in order to
+ allow parts to be generated under .NET 1.x and to
+ provide proper user feedback in syntactically
+ aware IDEs.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ConstraintExpressionBase.builder">
+ <summary>
+ The ConstraintBuilder holding the elements recognized so far
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:ConstraintExpressionBase"/> class.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
+ <summary>
+ Initializes a new instance of the <see cref="T:ConstraintExpressionBase"/>
+ class passing in a ConstraintBuilder, which may be pre-populated.
+ </summary>
+ <param name="builder">The builder.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.ToString">
+ <summary>
+ Returns a string representation of the expression as it
+ currently stands. This should only be used for testing,
+ since it has the side-effect of resolving the expression.
+ </summary>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.ConstraintOperator)">
+ <summary>
+ Appends an operator to the expression and returns the
+ resulting expression itself.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.SelfResolvingOperator)">
+ <summary>
+ Appends a self-resolving operator to the expression and
+ returns a new ResolvableConstraintExpression.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpressionBase.Append(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Appends a constraint to the expression and returns that
+ constraint, which is associated with the current state
+ of the expression being built.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.#ctor">
+ <summary>
+ Initializes a new instance of the <see cref="T:ConstraintExpression"/> class.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
+ <summary>
+ Initializes a new instance of the <see cref="T:ConstraintExpression"/>
+ class passing in a ConstraintBuilder, which may be pre-populated.
+ </summary>
+ <param name="builder">The builder.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Property(System.String)">
+ <summary>
+ Returns a new PropertyConstraintExpression, which will either
+ test for the existence of the named property on the object
+ being tested or apply any following constraint to that property.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Attribute(System.Type)">
+ <summary>
+ Returns a new AttributeConstraint checking for the
+ presence of a particular attribute on an object.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Attribute``1">
+ <summary>
+ Returns a new AttributeConstraint checking for the
+ presence of a particular attribute on an object.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Returns the constraint provided as an argument - used to allow custom
+ custom constraints to easily participate in the syntax.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches``1(System.Predicate{``0})">
+ <summary>
+ Returns the constraint provided as an argument - used to allow custom
+ custom constraints to easily participate in the syntax.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EqualTo(System.Object)">
+ <summary>
+ Returns a constraint that tests two items for equality
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SameAs(System.Object)">
+ <summary>
+ Returns a constraint that tests that two references are the same object
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThan(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is greater than the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.GreaterThanOrEqualTo(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is greater than or equal to the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AtLeast(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is greater than or equal to the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.LessThan(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is less than the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.LessThanOrEqualTo(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is less than or equal to the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AtMost(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is less than or equal to the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual
+ value is of the exact type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.TypeOf``1">
+ <summary>
+ Returns a constraint that tests whether the actual
+ value is of the exact type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is of the type supplied as an argument or a derived type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOf``1">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is of the type supplied as an argument or a derived type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is of the type supplied as an argument or a derived type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InstanceOfType``1">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is of the type supplied as an argument or a derived type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is assignable from the type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom``1">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is assignable from the type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is assignable from the type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.AssignableTo``1">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is assignable from the type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EquivalentTo(System.Collections.IEnumerable)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is a collection containing the same elements as the
+ collection supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SubsetOf(System.Collections.IEnumerable)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is a subset of the collection supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Member(System.Object)">
+ <summary>
+ Returns a new CollectionContainsConstraint checking for the
+ presence of a particular object in the collection.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.Object)">
+ <summary>
+ Returns a new CollectionContainsConstraint checking for the
+ presence of a particular object in the collection.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Contains(System.String)">
+ <summary>
+ Returns a new ContainsConstraint. This constraint
+ will, in turn, make use of the appropriate second-level
+ constraint, depending on the type of the actual argument.
+ This overload is only used if the item sought is a string,
+ since any other type implies that we are looking for a
+ collection member.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringContaining(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value contains the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.ContainsSubstring(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value contains the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StartsWith(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value starts with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringStarting(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value starts with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.EndsWith(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value ends with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringEnding(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value ends with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.Matches(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value matches the Regex pattern supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.StringMatching(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value matches the Regex pattern supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SamePath(System.String)">
+ <summary>
+ Returns a constraint that tests whether the path provided
+ is the same as an expected path after canonicalization.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SubPath(System.String)">
+ <summary>
+ Returns a constraint that tests whether the path provided
+ is the same path or under an expected path after canonicalization.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.SamePathOrUnder(System.String)">
+ <summary>
+ Returns a constraint that tests whether the path provided
+ is the same path or under an expected path after canonicalization.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintExpression.InRange(System.IComparable,System.IComparable)">
+ <summary>
+ Returns a constraint that tests whether the actual value falls
+ within a specified range.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Not">
+ <summary>
+ Returns a ConstraintExpression that negates any
+ following constraint.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.No">
+ <summary>
+ Returns a ConstraintExpression that negates any
+ following constraint.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.All">
+ <summary>
+ Returns a ConstraintExpression, which will apply
+ the following constraint to all members of a collection,
+ succeeding if all of them succeed.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Some">
+ <summary>
+ Returns a ConstraintExpression, which will apply
+ the following constraint to all members of a collection,
+ succeeding if at least one of them succeeds.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.None">
+ <summary>
+ Returns a ConstraintExpression, which will apply
+ the following constraint to all members of a collection,
+ succeeding if all of them fail.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Length">
+ <summary>
+ Returns a new ConstraintExpression, which will apply the following
+ constraint to the Length property of the object being tested.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Count">
+ <summary>
+ Returns a new ConstraintExpression, which will apply the following
+ constraint to the Count property of the object being tested.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Message">
+ <summary>
+ Returns a new ConstraintExpression, which will apply the following
+ constraint to the Message property of the object being tested.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.InnerException">
+ <summary>
+ Returns a new ConstraintExpression, which will apply the following
+ constraint to the InnerException property of the object being tested.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.With">
+ <summary>
+ With is currently a NOP - reserved for future use.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Null">
+ <summary>
+ Returns a constraint that tests for null
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.True">
+ <summary>
+ Returns a constraint that tests for True
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.False">
+ <summary>
+ Returns a constraint that tests for False
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.NaN">
+ <summary>
+ Returns a constraint that tests for NaN
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Empty">
+ <summary>
+ Returns a constraint that tests for empty
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Unique">
+ <summary>
+ Returns a constraint that tests whether a collection
+ contains all unique items.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.BinarySerializable">
+ <summary>
+ Returns a constraint that tests whether an object graph is serializable in binary format.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.XmlSerializable">
+ <summary>
+ Returns a constraint that tests whether an object graph is serializable in xml format.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintExpression.Ordered">
+ <summary>
+ Returns a constraint that tests whether a collection is ordered
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ConstraintFactory">
+ <summary>
+ Helper class with properties and methods that supply
+ a number of constraints used in Asserts.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Property(System.String)">
+ <summary>
+ Returns a new PropertyConstraintExpression, which will either
+ test for the existence of the named property on the object
+ being tested or apply any following constraint to that property.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Attribute(System.Type)">
+ <summary>
+ Returns a new AttributeConstraint checking for the
+ presence of a particular attribute on an object.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Attribute``1">
+ <summary>
+ Returns a new AttributeConstraint checking for the
+ presence of a particular attribute on an object.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EqualTo(System.Object)">
+ <summary>
+ Returns a constraint that tests two items for equality
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SameAs(System.Object)">
+ <summary>
+ Returns a constraint that tests that two references are the same object
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThan(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is greater than the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.GreaterThanOrEqualTo(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is greater than or equal to the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AtLeast(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is greater than or equal to the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.LessThan(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is less than the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.LessThanOrEqualTo(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is less than or equal to the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AtMost(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is less than or equal to the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual
+ value is of the exact type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.TypeOf``1">
+ <summary>
+ Returns a constraint that tests whether the actual
+ value is of the exact type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is of the type supplied as an argument or a derived type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOf``1">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is of the type supplied as an argument or a derived type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is of the type supplied as an argument or a derived type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InstanceOfType``1">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is of the type supplied as an argument or a derived type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is assignable from the type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableFrom``1">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is assignable from the type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is assignable from the type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.AssignableTo``1">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is assignable from the type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EquivalentTo(System.Collections.IEnumerable)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is a collection containing the same elements as the
+ collection supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SubsetOf(System.Collections.IEnumerable)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is a subset of the collection supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Member(System.Object)">
+ <summary>
+ Returns a new CollectionContainsConstraint checking for the
+ presence of a particular object in the collection.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.Object)">
+ <summary>
+ Returns a new CollectionContainsConstraint checking for the
+ presence of a particular object in the collection.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Contains(System.String)">
+ <summary>
+ Returns a new ContainsConstraint. This constraint
+ will, in turn, make use of the appropriate second-level
+ constraint, depending on the type of the actual argument.
+ This overload is only used if the item sought is a string,
+ since any other type implies that we are looking for a
+ collection member.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringContaining(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value contains the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.ContainsSubstring(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value contains the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotContain(System.String)">
+ <summary>
+ Returns a constraint that fails if the actual
+ value contains the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StartsWith(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value starts with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringStarting(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value starts with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotStartWith(System.String)">
+ <summary>
+ Returns a constraint that fails if the actual
+ value starts with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.EndsWith(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value ends with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringEnding(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value ends with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotEndWith(System.String)">
+ <summary>
+ Returns a constraint that fails if the actual
+ value ends with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.Matches(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value matches the Regex pattern supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.StringMatching(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value matches the Regex pattern supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.DoesNotMatch(System.String)">
+ <summary>
+ Returns a constraint that fails if the actual
+ value matches the pattern supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SamePath(System.String)">
+ <summary>
+ Returns a constraint that tests whether the path provided
+ is the same as an expected path after canonicalization.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SubPath(System.String)">
+ <summary>
+ Returns a constraint that tests whether the path provided
+ is the same path or under an expected path after canonicalization.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.SamePathOrUnder(System.String)">
+ <summary>
+ Returns a constraint that tests whether the path provided
+ is the same path or under an expected path after canonicalization.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintFactory.InRange(System.IComparable,System.IComparable)">
+ <summary>
+ Returns a constraint that tests whether the actual value falls
+ within a specified range.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Not">
+ <summary>
+ Returns a ConstraintExpression that negates any
+ following constraint.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.No">
+ <summary>
+ Returns a ConstraintExpression that negates any
+ following constraint.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.All">
+ <summary>
+ Returns a ConstraintExpression, which will apply
+ the following constraint to all members of a collection,
+ succeeding if all of them succeed.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Some">
+ <summary>
+ Returns a ConstraintExpression, which will apply
+ the following constraint to all members of a collection,
+ succeeding if at least one of them succeeds.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.None">
+ <summary>
+ Returns a ConstraintExpression, which will apply
+ the following constraint to all members of a collection,
+ succeeding if all of them fail.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Length">
+ <summary>
+ Returns a new ConstraintExpression, which will apply the following
+ constraint to the Length property of the object being tested.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Count">
+ <summary>
+ Returns a new ConstraintExpression, which will apply the following
+ constraint to the Count property of the object being tested.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Message">
+ <summary>
+ Returns a new ConstraintExpression, which will apply the following
+ constraint to the Message property of the object being tested.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.InnerException">
+ <summary>
+ Returns a new ConstraintExpression, which will apply the following
+ constraint to the InnerException property of the object being tested.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Null">
+ <summary>
+ Returns a constraint that tests for null
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.True">
+ <summary>
+ Returns a constraint that tests for True
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.False">
+ <summary>
+ Returns a constraint that tests for False
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.NaN">
+ <summary>
+ Returns a constraint that tests for NaN
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Empty">
+ <summary>
+ Returns a constraint that tests for empty
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Unique">
+ <summary>
+ Returns a constraint that tests whether a collection
+ contains all unique items.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.BinarySerializable">
+ <summary>
+ Returns a constraint that tests whether an object graph is serializable in binary format.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.XmlSerializable">
+ <summary>
+ Returns a constraint that tests whether an object graph is serializable in xml format.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintFactory.Ordered">
+ <summary>
+ Returns a constraint that tests whether a collection is ordered
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ConstraintOperator">
+ <summary>
+ The ConstraintOperator class is used internally by a
+ ConstraintBuilder to represent an operator that
+ modifies or combines constraints.
+
+ Constraint operators use left and right precedence
+ values to determine whether the top operator on the
+ stack should be reduced before pushing a new operator.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ConstraintOperator.left_precedence">
+ <summary>
+ The precedence value used when the operator
+ is about to be pushed to the stack.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ConstraintOperator.right_precedence">
+ <summary>
+ The precedence value used when the operator
+ is on the top of the stack.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ConstraintOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
+ <summary>
+ Reduce produces a constraint from the operator and
+ any arguments. It takes the arguments from the constraint
+ stack and pushes the resulting constraint on it.
+ </summary>
+ <param name="stack"></param>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintOperator.LeftContext">
+ <summary>
+ The syntax element preceding this operator
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintOperator.RightContext">
+ <summary>
+ The syntax element folowing this operator
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintOperator.LeftPrecedence">
+ <summary>
+ The precedence value used when the operator
+ is about to be pushed to the stack.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ConstraintOperator.RightPrecedence">
+ <summary>
+ The precedence value used when the operator
+ is on the top of the stack.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.PrefixOperator">
+ <summary>
+ PrefixOperator takes a single constraint and modifies
+ it's action in some way.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PrefixOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
+ <summary>
+ Reduce produces a constraint from the operator and
+ any arguments. It takes the arguments from the constraint
+ stack and pushes the resulting constraint on it.
+ </summary>
+ <param name="stack"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PrefixOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Returns the constraint created by applying this
+ prefix to another constraint.
+ </summary>
+ <param name="constraint"></param>
+ <returns></returns>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.NotOperator">
+ <summary>
+ Negates the test of the constraint it wraps.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NotOperator.#ctor">
+ <summary>
+ Constructs a new NotOperator
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NotOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Returns a NotConstraint applied to its argument.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.CollectionOperator">
+ <summary>
+ Abstract base for operators that indicate how to
+ apply a constraint to items in a collection.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.CollectionOperator.#ctor">
+ <summary>
+ Constructs a CollectionOperator
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.AllOperator">
+ <summary>
+ Represents a constraint that succeeds if all the
+ members of a collection match a base constraint.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AllOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Returns a constraint that will apply the argument
+ to the members of a collection, succeeding if
+ they all succeed.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.SomeOperator">
+ <summary>
+ Represents a constraint that succeeds if any of the
+ members of a collection match a base constraint.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SomeOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Returns a constraint that will apply the argument
+ to the members of a collection, succeeding if
+ any of them succeed.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.NoneOperator">
+ <summary>
+ Represents a constraint that succeeds if none of the
+ members of a collection match a base constraint.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NoneOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Returns a constraint that will apply the argument
+ to the members of a collection, succeeding if
+ none of them succeed.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.WithOperator">
+ <summary>
+ Represents a constraint that simply wraps the
+ constraint provided as an argument, without any
+ further functionality, but which modifes the
+ order of evaluation because of its precedence.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.WithOperator.#ctor">
+ <summary>
+ Constructor for the WithOperator
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.WithOperator.ApplyPrefix(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Returns a constraint that wraps its argument
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.SelfResolvingOperator">
+ <summary>
+ Abstract base class for operators that are able to reduce to a
+ constraint whether or not another syntactic element follows.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.PropOperator">
+ <summary>
+ Operator used to test for the presence of a named Property
+ on an object and optionally apply further tests to the
+ value of that property.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PropOperator.#ctor(System.String)">
+ <summary>
+ Constructs a PropOperator for a particular named property
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PropOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
+ <summary>
+ Reduce produces a constraint from the operator and
+ any arguments. It takes the arguments from the constraint
+ stack and pushes the resulting constraint on it.
+ </summary>
+ <param name="stack"></param>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.PropOperator.Name">
+ <summary>
+ Gets the name of the property to which the operator applies
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.AttributeOperator">
+ <summary>
+ Operator that tests for the presence of a particular attribute
+ on a type and optionally applies further tests to the attribute.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AttributeOperator.#ctor(System.Type)">
+ <summary>
+ Construct an AttributeOperator for a particular Type
+ </summary>
+ <param name="type">The Type of attribute tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AttributeOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
+ <summary>
+ Reduce produces a constraint from the operator and
+ any arguments. It takes the arguments from the constraint
+ stack and pushes the resulting constraint on it.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ThrowsOperator">
+ <summary>
+ Operator that tests that an exception is thrown and
+ optionally applies further tests to the exception.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ThrowsOperator.#ctor">
+ <summary>
+ Construct a ThrowsOperator
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ThrowsOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
+ <summary>
+ Reduce produces a constraint from the operator and
+ any arguments. It takes the arguments from the constraint
+ stack and pushes the resulting constraint on it.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.BinaryOperator">
+ <summary>
+ Abstract base class for all binary operators
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.BinaryOperator.Reduce(NUnit.Framework.Constraints.ConstraintBuilder.ConstraintStack)">
+ <summary>
+ Reduce produces a constraint from the operator and
+ any arguments. It takes the arguments from the constraint
+ stack and pushes the resulting constraint on it.
+ </summary>
+ <param name="stack"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.BinaryOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Abstract method that produces a constraint by applying
+ the operator to its left and right constraint arguments.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.BinaryOperator.LeftPrecedence">
+ <summary>
+ Gets the left precedence of the operator
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.BinaryOperator.RightPrecedence">
+ <summary>
+ Gets the right precedence of the operator
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.AndOperator">
+ <summary>
+ Operator that requires both it's arguments to succeed
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AndOperator.#ctor">
+ <summary>
+ Construct an AndOperator
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AndOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Apply the operator to produce an AndConstraint
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.OrOperator">
+ <summary>
+ Operator that requires at least one of it's arguments to succeed
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.OrOperator.#ctor">
+ <summary>
+ Construct an OrOperator
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.OrOperator.ApplyOperator(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Apply the operator to produce an OrConstraint
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ContainsConstraint">
+ <summary>
+ ContainsConstraint tests a whether a string contains a substring
+ or a collection contains an object. It postpones the decision of
+ which test to use until the type of the actual argument is known.
+ This allows testing whether a string is contained in a collection
+ or as a substring of another string using the same syntax.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ContainsConstraint.#ctor(System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:ContainsConstraint"/> class.
+ </summary>
+ <param name="expected">The expected.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ContainsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using(System.Collections.IComparer)">
+ <summary>
+ Flag the constraint to use the supplied IComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
+ <summary>
+ Flag the constraint to use the supplied IComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Comparison{``0})">
+ <summary>
+ Flag the constraint to use the supplied Comparison object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using(System.Collections.IEqualityComparer)">
+ <summary>
+ Flag the constraint to use the supplied IEqualityComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ContainsConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
+ <summary>
+ Flag the constraint to use the supplied IEqualityComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ContainsConstraint.IgnoreCase">
+ <summary>
+ Flag the constraint to ignore case and return self.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.DelayedConstraint">
+ <summary>
+ Applies a delay to the match so that a match can be evaluated in the future.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32)">
+ <summary>
+ Creates a new DelayedConstraint
+ </summary>
+ <param name="baseConstraint">The inner constraint two decorate</param>
+ <param name="delayInMilliseconds">The time interval after which the match is performed</param>
+ <exception cref="T:System.InvalidOperationException">If the value of <paramref name="delayInMilliseconds"/> is less than 0</exception>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.DelayedConstraint.#ctor(NUnit.Framework.Constraints.Constraint,System.Int32,System.Int32)">
+ <summary>
+ Creates a new DelayedConstraint
+ </summary>
+ <param name="baseConstraint">The inner constraint two decorate</param>
+ <param name="delayInMilliseconds">The time interval after which the match is performed</param>
+ <param name="pollingInterval">The time interval used for polling</param>
+ <exception cref="T:System.InvalidOperationException">If the value of <paramref name="delayInMilliseconds"/> is less than 0</exception>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for if the base constraint fails, false if it succeeds</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)">
+ <summary>
+ Test whether the constraint is satisfied by a delegate
+ </summary>
+ <param name="del">The delegate whose value is to be tested</param>
+ <returns>True for if the base constraint fails, false if it succeeds</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.DelayedConstraint.Matches``1(``0@)">
+ <summary>
+ Test whether the constraint is satisfied by a given reference.
+ Overridden to wait for the specified delay period before
+ calling the base constraint with the dereferenced value.
+ </summary>
+ <param name="actual">A reference to the value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.DelayedConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.DelayedConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the actual value for a failing constraint test to a MessageWriter.
+ </summary>
+ <param name="writer">The writer on which the actual value is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.DelayedConstraint.GetStringRepresentation">
+ <summary>
+ Returns the string representation of the constraint.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.EmptyDirectoryContraint">
+ <summary>
+ EmptyDirectoryConstraint is used to test that a directory is empty
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EmptyDirectoryContraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EmptyDirectoryContraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EmptyDirectoryContraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the actual value for a failing constraint test to a
+ MessageWriter. The default implementation simply writes
+ the raw value of actual, leaving it to the writer to
+ perform any formatting.
+ </summary>
+ <param name="writer">The writer on which the actual value is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.EmptyConstraint">
+ <summary>
+ EmptyConstraint tests a whether a string or collection is empty,
+ postponing the decision about which test is applied until the
+ type of the actual argument is known.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EmptyConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EmptyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.EqualConstraint">
+ <summary>
+ EqualConstraint is able to compare an actual value with the
+ expected value provided in its constructor. Two objects are
+ considered equal if both are null, or if both have the same
+ value. NUnit has special semantics for some object types.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.EqualConstraint.clipStrings">
+ <summary>
+ If true, strings in error messages will be clipped
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.EqualConstraint.comparer">
+ <summary>
+ NUnitEqualityComparer used to test equality.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.#ctor(System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:NUnit.Framework.Constraints.EqualConstraint"/> class.
+ </summary>
+ <param name="expected">The expected value.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.Within(System.Object)">
+ <summary>
+ Flag the constraint to use a tolerance when determining equality.
+ </summary>
+ <param name="amount">Tolerance value to be used</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.Comparer(System.Collections.IComparer)">
+ <summary>
+ Flag the constraint to use the supplied IComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IComparer)">
+ <summary>
+ Flag the constraint to use the supplied IComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
+ <summary>
+ Flag the constraint to use the supplied IComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Comparison{``0})">
+ <summary>
+ Flag the constraint to use the supplied Comparison object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using(System.Collections.IEqualityComparer)">
+ <summary>
+ Flag the constraint to use the supplied IEqualityComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.Using``1(System.Collections.Generic.IEqualityComparer{``0})">
+ <summary>
+ Flag the constraint to use the supplied IEqualityComparer object.
+ </summary>
+ <param name="comparer">The IComparer object to use.</param>
+ <returns>Self.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a failure message. Overridden to provide custom
+ failure messages for EqualConstraint.
+ </summary>
+ <param name="writer">The MessageWriter to write to</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write description of this constraint
+ </summary>
+ <param name="writer">The MessageWriter to write to</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionDifferences(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
+ <summary>
+ Display the failure information for two collections that did not match.
+ </summary>
+ <param name="writer">The MessageWriter on which to display</param>
+ <param name="expected">The expected collection.</param>
+ <param name="actual">The actual collection</param>
+ <param name="depth">The depth of this failure in a set of nested collections</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayCollectionTypesAndSizes(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32)">
+ <summary>
+ Displays a single line showing the types and sizes of the expected
+ and actual collections or arrays. If both are identical, the value is
+ only shown once.
+ </summary>
+ <param name="writer">The MessageWriter on which to display</param>
+ <param name="expected">The expected collection or array</param>
+ <param name="actual">The actual collection or array</param>
+ <param name="indent">The indentation level for the message line</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualConstraint.DisplayFailurePoint(NUnit.Framework.Constraints.MessageWriter,System.Collections.ICollection,System.Collections.ICollection,System.Int32,System.Int32)">
+ <summary>
+ Displays a single line showing the point in the expected and actual
+ arrays at which the comparison failed. If the arrays have different
+ structures or dimensions, both values are shown.
+ </summary>
+ <param name="writer">The MessageWriter on which to display</param>
+ <param name="expected">The expected array</param>
+ <param name="actual">The actual array</param>
+ <param name="failurePoint">Index of the failure point in the underlying collections</param>
+ <param name="indent">The indentation level for the message line</param>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.EqualConstraint.IgnoreCase">
+ <summary>
+ Flag the constraint to ignore case and return self.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.EqualConstraint.NoClip">
+ <summary>
+ Flag the constraint to suppress string clipping
+ and return self.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.EqualConstraint.AsCollection">
+ <summary>
+ Flag the constraint to compare arrays as collections
+ and return self.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.EqualConstraint.Ulps">
+ <summary>
+ Switches the .Within() modifier to interpret its tolerance as
+ a distance in representable values (see remarks).
+ </summary>
+ <returns>Self.</returns>
+ <remarks>
+ Ulp stands for "unit in the last place" and describes the minimum
+ amount a given value can change. For any integers, an ulp is 1 whole
+ digit. For floating point values, the accuracy of which is better
+ for smaller numbers and worse for larger numbers, an ulp depends
+ on the size of the number. Using ulps for comparison of floating
+ point results instead of fixed tolerances is safer because it will
+ automatically compensate for the added inaccuracy of larger numbers.
+ </remarks>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.EqualConstraint.Percent">
+ <summary>
+ Switches the .Within() modifier to interpret its tolerance as
+ a percentage that the actual values is allowed to deviate from
+ the expected value.
+ </summary>
+ <returns>Self</returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.EqualConstraint.Days">
+ <summary>
+ Causes the tolerance to be interpreted as a TimeSpan in days.
+ </summary>
+ <returns>Self</returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.EqualConstraint.Hours">
+ <summary>
+ Causes the tolerance to be interpreted as a TimeSpan in hours.
+ </summary>
+ <returns>Self</returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.EqualConstraint.Minutes">
+ <summary>
+ Causes the tolerance to be interpreted as a TimeSpan in minutes.
+ </summary>
+ <returns>Self</returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.EqualConstraint.Seconds">
+ <summary>
+ Causes the tolerance to be interpreted as a TimeSpan in seconds.
+ </summary>
+ <returns>Self</returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.EqualConstraint.Milliseconds">
+ <summary>
+ Causes the tolerance to be interpreted as a TimeSpan in milliseconds.
+ </summary>
+ <returns>Self</returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.EqualConstraint.Ticks">
+ <summary>
+ Causes the tolerance to be interpreted as a TimeSpan in clock ticks.
+ </summary>
+ <returns>Self</returns>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.EqualityAdapter">
+ <summary>
+ EqualityAdapter class handles all equality comparisons
+ that use an IEqualityComparer, IEqualityComparer<T>
+ or a ComparisonAdapter.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualityAdapter.ObjectsEqual(System.Object,System.Object)">
+ <summary>
+ Compares two objects, returning true if they are equal
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IComparer)">
+ <summary>
+ Returns an EqualityAdapter that wraps an IComparer.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For(System.Collections.IEqualityComparer)">
+ <summary>
+ Returns an EqualityAdapter that wraps an IEqualityComparer.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IEqualityComparer{``0})">
+ <summary>
+ Returns an EqualityAdapter that wraps an IEqualityComparer<T>.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Collections.Generic.IComparer{``0})">
+ <summary>
+ Returns an EqualityAdapter that wraps an IComparer<T>.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EqualityAdapter.For``1(System.Comparison{``0})">
+ <summary>
+ Returns an EqualityAdapter that wraps a Comparison<T>.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics">
+ <summary>Helper routines for working with floating point numbers</summary>
+ <remarks>
+ <para>
+ The floating point comparison code is based on this excellent article:
+ http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm
+ </para>
+ <para>
+ "ULP" means Unit in the Last Place and in the context of this library refers to
+ the distance between two adjacent floating point numbers. IEEE floating point
+ numbers can only represent a finite subset of natural numbers, with greater
+ accuracy for smaller numbers and lower accuracy for very large numbers.
+ </para>
+ <para>
+ If a comparison is allowed "2 ulps" of deviation, that means the values are
+ allowed to deviate by up to 2 adjacent floating point values, which might be
+ as low as 0.0000001 for small numbers or as high as 10.0 for large numbers.
+ </para>
+ </remarks>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Single,System.Single,System.Int32)">
+ <summary>Compares two floating point values for equality</summary>
+ <param name="left">First floating point value to be compared</param>
+ <param name="right">Second floating point value t be compared</param>
+ <param name="maxUlps">
+ Maximum number of representable floating point values that are allowed to
+ be between the left and the right floating point values
+ </param>
+ <returns>True if both numbers are equal or close to being equal</returns>
+ <remarks>
+ <para>
+ Floating point values can only represent a finite subset of natural numbers.
+ For example, the values 2.00000000 and 2.00000024 can be stored in a float,
+ but nothing inbetween them.
+ </para>
+ <para>
+ This comparison will count how many possible floating point values are between
+ the left and the right number. If the number of possible values between both
+ numbers is less than or equal to maxUlps, then the numbers are considered as
+ being equal.
+ </para>
+ <para>
+ Implementation partially follows the code outlined here:
+ http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/
+ </para>
+ </remarks>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.AreAlmostEqualUlps(System.Double,System.Double,System.Int64)">
+ <summary>Compares two double precision floating point values for equality</summary>
+ <param name="left">First double precision floating point value to be compared</param>
+ <param name="right">Second double precision floating point value t be compared</param>
+ <param name="maxUlps">
+ Maximum number of representable double precision floating point values that are
+ allowed to be between the left and the right double precision floating point values
+ </param>
+ <returns>True if both numbers are equal or close to being equal</returns>
+ <remarks>
+ <para>
+ Double precision floating point values can only represent a limited series of
+ natural numbers. For example, the values 2.0000000000000000 and 2.0000000000000004
+ can be stored in a double, but nothing inbetween them.
+ </para>
+ <para>
+ This comparison will count how many possible double precision floating point
+ values are between the left and the right number. If the number of possible
+ values between both numbers is less than or equal to maxUlps, then the numbers
+ are considered as being equal.
+ </para>
+ <para>
+ Implementation partially follows the code outlined here:
+ http://www.anttirt.net/2007/08/19/proper-floating-point-comparisons/
+ </para>
+ </remarks>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsInt(System.Single)">
+ <summary>
+ Reinterprets the memory contents of a floating point value as an integer value
+ </summary>
+ <param name="value">
+ Floating point value whose memory contents to reinterpret
+ </param>
+ <returns>
+ The memory contents of the floating point value interpreted as an integer
+ </returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsLong(System.Double)">
+ <summary>
+ Reinterprets the memory contents of a double precision floating point
+ value as an integer value
+ </summary>
+ <param name="value">
+ Double precision floating point value whose memory contents to reinterpret
+ </param>
+ <returns>
+ The memory contents of the double precision floating point value
+ interpreted as an integer
+ </returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsFloat(System.Int32)">
+ <summary>
+ Reinterprets the memory contents of an integer as a floating point value
+ </summary>
+ <param name="value">Integer value whose memory contents to reinterpret</param>
+ <returns>
+ The memory contents of the integer value interpreted as a floating point value
+ </returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.FloatingPointNumerics.ReinterpretAsDouble(System.Int64)">
+ <summary>
+ Reinterprets the memory contents of an integer value as a double precision
+ floating point value
+ </summary>
+ <param name="value">Integer whose memory contents to reinterpret</param>
+ <returns>
+ The memory contents of the integer interpreted as a double precision
+ floating point value
+ </returns>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion">
+ <summary>Union of a floating point variable and an integer</summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Float">
+ <summary>The union's value as a floating point variable</summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.Int">
+ <summary>The union's value as an integer</summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.FloatIntUnion.UInt">
+ <summary>The union's value as an unsigned integer</summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion">
+ <summary>Union of a double precision floating point variable and a long</summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Double">
+ <summary>The union's value as a double precision floating point variable</summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.Long">
+ <summary>The union's value as a long</summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.FloatingPointNumerics.DoubleLongUnion.ULong">
+ <summary>The union's value as an unsigned long</summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.MessageWriter">
+ <summary>
+ MessageWriter is the abstract base for classes that write
+ constraint descriptions and messages in some form. The
+ class has separate methods for writing various components
+ of a message, allowing implementations to tailor the
+ presentation as needed.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.#ctor">
+ <summary>
+ Construct a MessageWriter given a culture
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.String,System.Object[])">
+ <summary>
+ Method to write single line message with optional args, usually
+ written to precede the general failure message.
+ </summary>
+ <param name="message">The message to be written</param>
+ <param name="args">Any arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
+ <summary>
+ Method to write single line message with optional args, usually
+ written to precede the general failure message, at a givel
+ indentation level.
+ </summary>
+ <param name="level">The indentation level of the message</param>
+ <param name="message">The message to be written</param>
+ <param name="args">Any arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Display Expected and Actual lines for a constraint. This
+ is called by MessageWriter's default implementation of
+ WriteMessageTo and provides the generic two-line display.
+ </summary>
+ <param name="constraint">The constraint that failed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object)">
+ <summary>
+ Display Expected and Actual lines for given values. This
+ method may be called by constraints that need more control over
+ the display of actual and expected values than is provided
+ by the default implementation.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value causing the failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)">
+ <summary>
+ Display Expected and Actual lines for given values, including
+ a tolerance value on the Expected line.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value causing the failure</param>
+ <param name="tolerance">The tolerance within which the test was made</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
+ <summary>
+ Display the expected and actual string values on separate lines.
+ If the mismatch parameter is >=0, an additional line is displayed
+ line containing a caret that points to the mismatch point.
+ </summary>
+ <param name="expected">The expected string value</param>
+ <param name="actual">The actual string value</param>
+ <param name="mismatch">The point at which the strings don't match or -1</param>
+ <param name="ignoreCase">If true, case is ignored in locating the point where the strings differ</param>
+ <param name="clipping">If true, the strings should be clipped to fit the line</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteConnector(System.String)">
+ <summary>
+ Writes the text for a connector.
+ </summary>
+ <param name="connector">The connector.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.WritePredicate(System.String)">
+ <summary>
+ Writes the text for a predicate.
+ </summary>
+ <param name="predicate">The predicate.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteExpectedValue(System.Object)">
+ <summary>
+ Writes the text for an expected value.
+ </summary>
+ <param name="expected">The expected value.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteModifier(System.String)">
+ <summary>
+ Writes the text for a modifier
+ </summary>
+ <param name="modifier">The modifier.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteActualValue(System.Object)">
+ <summary>
+ Writes the text for an actual value.
+ </summary>
+ <param name="actual">The actual value.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteValue(System.Object)">
+ <summary>
+ Writes the text for a generalized value.
+ </summary>
+ <param name="val">The value.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MessageWriter.WriteCollectionElements(System.Collections.ICollection,System.Int32,System.Int32)">
+ <summary>
+ Writes the text for a collection value,
+ starting at a particular point, to a max length
+ </summary>
+ <param name="collection">The collection containing elements to write.</param>
+ <param name="start">The starting point of the elements to write</param>
+ <param name="max">The maximum number of elements to write</param>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.MessageWriter.MaxLineLength">
+ <summary>
+ Abstract method to get the max line length
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.MsgUtils">
+ <summary>
+ Static methods used in creating messages
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.MsgUtils.ELLIPSIS">
+ <summary>
+ Static string used when strings are clipped
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MsgUtils.GetTypeRepresentation(System.Object)">
+ <summary>
+ Returns the representation of a type as used in NUnitLite.
+ This is the same as Type.ToString() except for arrays,
+ which are displayed with their declared sizes.
+ </summary>
+ <param name="obj"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MsgUtils.EscapeControlChars(System.String)">
+ <summary>
+ Converts any control characters in a string
+ to their escaped representation.
+ </summary>
+ <param name="s">The string to be converted</param>
+ <returns>The converted string</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesAsString(System.Int32[])">
+ <summary>
+ Return the a string representation for a set of indices into an array
+ </summary>
+ <param name="indices">Array of indices for which a string is needed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MsgUtils.GetArrayIndicesFromCollectionIndex(System.Collections.ICollection,System.Int32)">
+ <summary>
+ Get an array of indices representing the point in a collection or
+ array corresponding to a single int index into the collection.
+ </summary>
+ <param name="collection">The collection to which the indices apply</param>
+ <param name="index">Index in the collection</param>
+ <returns>Array of indices</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MsgUtils.ClipString(System.String,System.Int32,System.Int32)">
+ <summary>
+ Clip a string to a given length, starting at a particular offset, returning the clipped
+ string with ellipses representing the removed parts
+ </summary>
+ <param name="s">The string to be clipped</param>
+ <param name="maxStringLength">The maximum permitted length of the result string</param>
+ <param name="clipStart">The point at which to start clipping</param>
+ <returns>The clipped string</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MsgUtils.ClipExpectedAndActual(System.String@,System.String@,System.Int32,System.Int32)">
+ <summary>
+ Clip the expected and actual strings in a coordinated fashion,
+ so that they may be displayed together.
+ </summary>
+ <param name="expected"></param>
+ <param name="actual"></param>
+ <param name="maxDisplayLength"></param>
+ <param name="mismatch"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.MsgUtils.FindMismatchPosition(System.String,System.String,System.Int32,System.Boolean)">
+ <summary>
+ Shows the position two strings start to differ. Comparison
+ starts at the start index.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The actual string</param>
+ <param name="istart">The index in the strings at which comparison should start</param>
+ <param name="ignoreCase">Boolean indicating whether case should be ignored</param>
+ <returns>-1 if no mismatch found, or the index where mismatch found</returns>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.Numerics">
+ <summary>
+ The Numerics class contains common operations on numeric values.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Numerics.IsNumericType(System.Object)">
+ <summary>
+ Checks the type of the object, returning true if
+ the object is a numeric type.
+ </summary>
+ <param name="obj">The object to check</param>
+ <returns>true if the object is a numeric type</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Numerics.IsFloatingPointNumeric(System.Object)">
+ <summary>
+ Checks the type of the object, returning true if
+ the object is a floating point numeric type.
+ </summary>
+ <param name="obj">The object to check</param>
+ <returns>true if the object is a floating point numeric type</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Numerics.IsFixedPointNumeric(System.Object)">
+ <summary>
+ Checks the type of the object, returning true if
+ the object is a fixed point numeric type.
+ </summary>
+ <param name="obj">The object to check</param>
+ <returns>true if the object is a fixed point numeric type</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Numerics.AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance@)">
+ <summary>
+ Test two numeric values for equality, performing the usual numeric
+ conversions and using a provided or default tolerance. If the tolerance
+ provided is Empty, this method may set it to a default tolerance.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ <param name="tolerance">A reference to the tolerance in effect</param>
+ <returns>True if the values are equal</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Numerics.Compare(System.Object,System.Object)">
+ <summary>
+ Compare two numeric values, performing the usual numeric conversions.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ <returns>The relationship of the values to each other</returns>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.NUnitComparer">
+ <summary>
+ NUnitComparer encapsulates NUnit's default behavior
+ in comparing two objects.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NUnitComparer.Compare(System.Object,System.Object)">
+ <summary>
+ Compares two objects
+ </summary>
+ <param name="x"></param>
+ <param name="y"></param>
+ <returns></returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.NUnitComparer.Default">
+ <summary>
+ Returns the default NUnitComparer.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.NUnitEqualityComparer">
+ <summary>
+ NUnitEqualityComparer encapsulates NUnit's handling of
+ equality tests between objects.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.caseInsensitive">
+ <summary>
+ If true, all string comparisons will ignore case
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.compareAsCollection">
+ <summary>
+ If true, arrays will be treated as collections, allowing
+ those of different dimensions to be compared
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.tolerance">
+ <summary>
+ If non-zero, equality comparisons within the specified
+ tolerance will succeed.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.NUnitEqualityComparer.externalComparer">
+ <summary>
+ Comparison object used in comparisons for some constraints.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.ObjectsEqual(System.Object,System.Object)">
+ <summary>
+ Compares two objects for equality.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.ArraysEqual(System.Array,System.Array)">
+ <summary>
+ Helper method to compare two arrays
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NUnitEqualityComparer.DirectoriesEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
+ <summary>
+ Method to compare two DirectoryInfo objects
+ </summary>
+ <param name="x">first directory to compare</param>
+ <param name="y">second directory to compare</param>
+ <returns>true if equivalent, false if not</returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.Default">
+ <summary>
+ Returns the default NUnitEqualityComparer
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.IgnoreCase">
+ <summary>
+ Gets and sets a flag indicating whether case should
+ be ignored in determining equality.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.CompareAsCollection">
+ <summary>
+ Gets and sets a flag indicating that arrays should be
+ compared as collections, without regard to their shape.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.ExternalComparer">
+ <summary>
+ Gets and sets an external comparer to be used to
+ test for equality. It is applied to members of
+ collections, in place of NUnit's own logic.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.Tolerance">
+ <summary>
+ Gets and sets a tolerance used to compare objects of
+ certin types.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.NUnitEqualityComparer.FailurePoints">
+ <summary>
+ Gets the list of failure points for the last Match performed.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.PathConstraint">
+ <summary>
+ PathConstraint serves as the abstract base of constraints
+ that operate on paths and provides several helper methods.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.PathConstraint.expectedPath">
+ <summary>
+ The expected path used in the constraint
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.PathConstraint.actualPath">
+ <summary>
+ The actual path being tested
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.PathConstraint.caseInsensitive">
+ <summary>
+ Flag indicating whether a caseInsensitive comparison should be made
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PathConstraint.#ctor(System.String)">
+ <summary>
+ Construct a PathConstraint for a give expected path
+ </summary>
+ <param name="expected">The expected path</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PathConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PathConstraint.IsMatch(System.String,System.String)">
+ <summary>
+ Returns true if the expected path and actual path match
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PathConstraint.GetStringRepresentation">
+ <summary>
+ Returns the string representation of this constraint
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PathConstraint.Canonicalize(System.String)">
+ <summary>
+ Canonicalize the provided path
+ </summary>
+ <param name="path"></param>
+ <returns>The path in standardized form</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PathConstraint.IsSamePath(System.String,System.String,System.Boolean)">
+ <summary>
+ Test whether two paths are the same
+ </summary>
+ <param name="path1">The first path</param>
+ <param name="path2">The second path</param>
+ <param name="ignoreCase">Indicates whether case should be ignored</param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PathConstraint.IsSubPath(System.String,System.String,System.Boolean)">
+ <summary>
+ Test whether one path is under another path
+ </summary>
+ <param name="path1">The first path - supposed to be the parent path</param>
+ <param name="path2">The second path - supposed to be the child path</param>
+ <param name="ignoreCase">Indicates whether case should be ignored</param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PathConstraint.IsSamePathOrUnder(System.String,System.String)">
+ <summary>
+ Test whether one path is the same as or under another path
+ </summary>
+ <param name="path1">The first path - supposed to be the parent path</param>
+ <param name="path2">The second path - supposed to be the child path</param>
+ <returns></returns>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.PathConstraint.IgnoreCase">
+ <summary>
+ Modifies the current instance to be case-insensitve
+ and returns it.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.PathConstraint.RespectCase">
+ <summary>
+ Modifies the current instance to be case-sensitve
+ and returns it.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.SamePathConstraint">
+ <summary>
+ Summary description for SamePathConstraint.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SamePathConstraint.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:SamePathConstraint"/> class.
+ </summary>
+ <param name="expected">The expected path</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SamePathConstraint.IsMatch(System.String,System.String)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="expectedPath">The expected path</param>
+ <param name="actualPath">The actual path</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SamePathConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.SubPathConstraint">
+ <summary>
+ SubPathConstraint tests that the actual path is under the expected path
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SubPathConstraint.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:SubPathConstraint"/> class.
+ </summary>
+ <param name="expected">The expected path</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SubPathConstraint.IsMatch(System.String,System.String)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="expectedPath">The expected path</param>
+ <param name="actualPath">The actual path</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SubPathConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.SamePathOrUnderConstraint">
+ <summary>
+ SamePathOrUnderConstraint tests that one path is under another
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:SamePathOrUnderConstraint"/> class.
+ </summary>
+ <param name="expected">The expected path</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.IsMatch(System.String,System.String)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="expectedPath">The expected path</param>
+ <param name="actualPath">The actual path</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SamePathOrUnderConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.PredicateConstraint`1">
+ <summary>
+ Predicate constraint wraps a Predicate in a constraint,
+ returning success if the predicate is true.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.#ctor(System.Predicate{`0})">
+ <summary>
+ Construct a PredicateConstraint from a predicate
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.Matches(System.Object)">
+ <summary>
+ Determines whether the predicate succeeds when applied
+ to the actual value.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PredicateConstraint`1.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Writes the description to a MessageWriter
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.NotConstraint">
+ <summary>
+ NotConstraint negates the effect of some other constraint
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NotConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Initializes a new instance of the <see cref="T:NotConstraint"/> class.
+ </summary>
+ <param name="baseConstraint">The base constraint to be negated.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NotConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for if the base constraint fails, false if it succeeds</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NotConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the actual value for a failing constraint test to a MessageWriter.
+ </summary>
+ <param name="writer">The writer on which the actual value is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.AllItemsConstraint">
+ <summary>
+ AllItemsConstraint applies another constraint to each
+ item in a collection, succeeding if they all succeed.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Construct an AllItemsConstraint on top of an existing constraint
+ </summary>
+ <param name="itemConstraint"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.Matches(System.Object)">
+ <summary>
+ Apply the item constraint to each item in the collection,
+ failing if any item fails.
+ </summary>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AllItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a description of this constraint to a MessageWriter
+ </summary>
+ <param name="writer"></param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.SomeItemsConstraint">
+ <summary>
+ SomeItemsConstraint applies another constraint to each
+ item in a collection, succeeding if any of them succeeds.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Construct a SomeItemsConstraint on top of an existing constraint
+ </summary>
+ <param name="itemConstraint"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.Matches(System.Object)">
+ <summary>
+ Apply the item constraint to each item in the collection,
+ succeeding if any item succeeds.
+ </summary>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SomeItemsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a description of this constraint to a MessageWriter
+ </summary>
+ <param name="writer"></param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.NoItemConstraint">
+ <summary>
+ NoItemConstraint applies another constraint to each
+ item in a collection, failing if any of them succeeds.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NoItemConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Construct a SomeItemsConstraint on top of an existing constraint
+ </summary>
+ <param name="itemConstraint"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NoItemConstraint.Matches(System.Object)">
+ <summary>
+ Apply the item constraint to each item in the collection,
+ failing if any item fails.
+ </summary>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NoItemConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a description of this constraint to a MessageWriter
+ </summary>
+ <param name="writer"></param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.PropertyExistsConstraint">
+ <summary>
+ PropertyExistsConstraint tests that a named property
+ exists on the object provided through Match.
+
+ Originally, PropertyConstraint provided this feature
+ in addition to making optional tests on the vaue
+ of the property. The two constraints are now separate.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:PropertyExistConstraint"/> class.
+ </summary>
+ <param name="name">The name of the property.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the property exists for a given object
+ </summary>
+ <param name="actual">The object to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the actual value for a failing constraint test to a
+ MessageWriter.
+ </summary>
+ <param name="writer">The writer on which the actual value is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PropertyExistsConstraint.GetStringRepresentation">
+ <summary>
+ Returns the string representation of the constraint.
+ </summary>
+ <returns></returns>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.PropertyConstraint">
+ <summary>
+ PropertyConstraint extracts a named property and uses
+ its value as the actual value for a chained constraint.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PropertyConstraint.#ctor(System.String,NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Initializes a new instance of the <see cref="T:PropertyConstraint"/> class.
+ </summary>
+ <param name="name">The name.</param>
+ <param name="baseConstraint">The constraint to apply to the property.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PropertyConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PropertyConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the actual value for a failing constraint test to a
+ MessageWriter. The default implementation simply writes
+ the raw value of actual, leaving it to the writer to
+ perform any formatting.
+ </summary>
+ <param name="writer">The writer on which the actual value is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.PropertyConstraint.GetStringRepresentation">
+ <summary>
+ Returns the string representation of the constraint.
+ </summary>
+ <returns></returns>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.RangeConstraint">
+ <summary>
+ RangeConstraint tests whethe two values are within a
+ specified range.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.RangeConstraint.#ctor(System.IComparable,System.IComparable)">
+ <summary>
+ Initializes a new instance of the <see cref="T:RangeConstraint"/> class.
+ </summary>
+ <param name="from">From.</param>
+ <param name="to">To.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.RangeConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.RangeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.RangeConstraint.Using(System.Collections.IComparer)">
+ <summary>
+ Modifies the constraint to use an IComparer and returns self.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.RangeConstraint.Using``1(System.Collections.Generic.IComparer{``0})">
+ <summary>
+ Modifies the constraint to use an IComparer<T> and returns self.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.RangeConstraint.Using``1(System.Comparison{``0})">
+ <summary>
+ Modifies the constraint to use a Comparison<T> and returns self.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ResolvableConstraintExpression">
+ <summary>
+ ResolvableConstraintExpression is used to represent a compound
+ constraint being constructed at a point where the last operator
+ may either terminate the expression or may have additional
+ qualifying constraints added to it.
+
+ It is used, for example, for a Property element or for
+ an Exception element, either of which may be optionally
+ followed by constraints that apply to the property or
+ exception.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor">
+ <summary>
+ Create a new instance of ResolvableConstraintExpression
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.#ctor(NUnit.Framework.Constraints.ConstraintBuilder)">
+ <summary>
+ Create a new instance of ResolvableConstraintExpression,
+ passing in a pre-populated ConstraintBuilder.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ResolvableConstraintExpression.NUnit#Framework#Constraints#IResolveConstraint#Resolve">
+ <summary>
+ Resolve the current expression to a Constraint
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.And">
+ <summary>
+ Appends an And Operator to the expression
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ResolvableConstraintExpression.Or">
+ <summary>
+ Appends an Or operator to the expression.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ReusableConstraint">
+ <summary>
+ ReusableConstraint wraps a resolved constraint so that it
+ may be saved and reused as needed.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ReusableConstraint.#ctor(NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Construct a ReusableConstraint
+ </summary>
+ <param name="c">The constraint or expression to be reused</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ReusableConstraint.op_Implicit(NUnit.Framework.Constraints.Constraint)~NUnit.Framework.Constraints.ReusableConstraint">
+ <summary>
+ Conversion operator from a normal constraint to a ReusableConstraint.
+ </summary>
+ <param name="c">The original constraint to be wrapped as a ReusableConstraint</param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ReusableConstraint.ToString">
+ <summary>
+ Returns the string representation of the constraint.
+ </summary>
+ <returns>A string representing the constraint</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ReusableConstraint.Resolve">
+ <summary>
+ Resolves the ReusableConstraint by returning the constraint
+ that it originally wrapped.
+ </summary>
+ <returns>A resolved constraint</returns>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.SameAsConstraint">
+ <summary>
+ SameAsConstraint tests whether an object is identical to
+ the object passed to its constructor
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SameAsConstraint.#ctor(System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:SameAsConstraint"/> class.
+ </summary>
+ <param name="expected">The expected object.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SameAsConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SameAsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.BinarySerializableConstraint">
+ <summary>
+ BinarySerializableConstraint tests whether
+ an object is serializable in binary format.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the actual value for a failing constraint test to a
+ MessageWriter. The default implementation simply writes
+ the raw value of actual, leaving it to the writer to
+ perform any formatting.
+ </summary>
+ <param name="writer">The writer on which the actual value is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.BinarySerializableConstraint.GetStringRepresentation">
+ <summary>
+ Returns the string representation
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.XmlSerializableConstraint">
+ <summary>
+ BinarySerializableConstraint tests whether
+ an object is serializable in binary format.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the actual value for a failing constraint test to a
+ MessageWriter. The default implementation simply writes
+ the raw value of actual, leaving it to the writer to
+ perform any formatting.
+ </summary>
+ <param name="writer">The writer on which the actual value is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.XmlSerializableConstraint.GetStringRepresentation">
+ <summary>
+ Returns the string representation of this constraint
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.StringConstraint">
+ <summary>
+ StringConstraint is the abstract base for constraints
+ that operate on strings. It supports the IgnoreCase
+ modifier for string operations.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.StringConstraint.expected">
+ <summary>
+ The expected value
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.StringConstraint.caseInsensitive">
+ <summary>
+ Indicates whether tests should be case-insensitive
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.StringConstraint.#ctor(System.String)">
+ <summary>
+ Constructs a StringConstraint given an expected value
+ </summary>
+ <param name="expected">The expected value</param>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.StringConstraint.IgnoreCase">
+ <summary>
+ Modify the constraint to ignore case in matching.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.EmptyStringConstraint">
+ <summary>
+ EmptyStringConstraint tests whether a string is empty.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.NullOrEmptyStringConstraint">
+ <summary>
+ NullEmptyStringConstraint tests whether a string is either null or empty.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.#ctor">
+ <summary>
+ Constructs a new NullOrEmptyStringConstraint
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.NullOrEmptyStringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.SubstringConstraint">
+ <summary>
+ SubstringConstraint can test whether a string contains
+ the expected substring.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SubstringConstraint.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:SubstringConstraint"/> class.
+ </summary>
+ <param name="expected">The expected.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SubstringConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.SubstringConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.StartsWithConstraint">
+ <summary>
+ StartsWithConstraint can test whether a string starts
+ with an expected substring.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:StartsWithConstraint"/> class.
+ </summary>
+ <param name="expected">The expected string</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is matched by the actual value.
+ This is a template method, which calls the IsMatch method
+ of the derived class.
+ </summary>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.StartsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.EndsWithConstraint">
+ <summary>
+ EndsWithConstraint can test whether a string ends
+ with an expected substring.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:EndsWithConstraint"/> class.
+ </summary>
+ <param name="expected">The expected string</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is matched by the actual value.
+ This is a template method, which calls the IsMatch method
+ of the derived class.
+ </summary>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.EndsWithConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.RegexConstraint">
+ <summary>
+ RegexConstraint can test whether a string matches
+ the pattern provided.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.RegexConstraint.#ctor(System.String)">
+ <summary>
+ Initializes a new instance of the <see cref="T:RegexConstraint"/> class.
+ </summary>
+ <param name="pattern">The pattern.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.RegexConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <param name="actual">The value to be tested</param>
+ <returns>True for success, false for failure</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.RegexConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ThrowsConstraint">
+ <summary>
+ ThrowsConstraint is used to test the exception thrown by
+ a delegate by applying a constraint to it.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.#ctor(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Initializes a new instance of the <see cref="T:ThrowsConstraint"/> class,
+ using a constraint to be applied to the exception.
+ </summary>
+ <param name="baseConstraint">A constraint to apply to the caught exception.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.Matches(System.Object)">
+ <summary>
+ Executes the code of the delegate and captures any exception.
+ If a non-null base constraint was provided, it applies that
+ constraint to the exception.
+ </summary>
+ <param name="actual">A delegate representing the code to be tested</param>
+ <returns>True if an exception is thrown and the constraint succeeds, otherwise false</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.Matches(NUnit.Framework.Constraints.ActualValueDelegate)">
+ <summary>
+ Converts an ActualValueDelegate to a TestDelegate
+ before calling the primary overload.
+ </summary>
+ <param name="del"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the actual value for a failing constraint test to a
+ MessageWriter. The default implementation simply writes
+ the raw value of actual, leaving it to the writer to
+ perform any formatting.
+ </summary>
+ <param name="writer">The writer on which the actual value is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ThrowsConstraint.GetStringRepresentation">
+ <summary>
+ Returns the string representation of this constraint
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.ThrowsConstraint.ActualException">
+ <summary>
+ Get the actual exception thrown - used by Assert.Throws.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ThrowsNothingConstraint">
+ <summary>
+ ThrowsNothingConstraint tests that a delegate does not
+ throw an exception.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.Matches(System.Object)">
+ <summary>
+ Test whether the constraint is satisfied by a given value
+ </summary>
+ <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(NUnit.Framework.Constraints.ActualValueDelegate)">
+ <summary>
+ Converts an ActualValueDelegate to a TestDelegate
+ before calling the primary overload.
+ </summary>
+ <param name="del"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the constraint description to a MessageWriter
+ </summary>
+ <param name="writer">The writer on which the description is displayed</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ThrowsNothingConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the actual value for a failing constraint test to a
+ MessageWriter. The default implementation simply writes
+ the raw value of actual, leaving it to the writer to
+ perform any formatting.
+ </summary>
+ <param name="writer">The writer on which the actual value is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ToleranceMode">
+ <summary>
+ Modes in which the tolerance value for a comparison can
+ be interpreted.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ToleranceMode.None">
+ <summary>
+ The tolerance was created with a value, without specifying
+ how the value would be used. This is used to prevent setting
+ the mode more than once and is generally changed to Linear
+ upon execution of the test.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ToleranceMode.Linear">
+ <summary>
+ The tolerance is used as a numeric range within which
+ two compared values are considered to be equal.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ToleranceMode.Percent">
+ <summary>
+ Interprets the tolerance as the percentage by which
+ the two compared values my deviate from each other.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.ToleranceMode.Ulps">
+ <summary>
+ Compares two values based in their distance in
+ representable numbers.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.Tolerance">
+ <summary>
+ The Tolerance class generalizes the notion of a tolerance
+ within which an equality test succeeds. Normally, it is
+ used with numeric types, but it can be used with any
+ type that supports taking a difference between two
+ objects and comparing that difference to a value.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object)">
+ <summary>
+ Constructs a linear tolerance of a specdified amount
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Tolerance.#ctor(System.Object,NUnit.Framework.Constraints.ToleranceMode)">
+ <summary>
+ Constructs a tolerance given an amount and ToleranceMode
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.Tolerance.CheckLinearAndNumeric">
+ <summary>
+ Tests that the current Tolerance is linear with a
+ numeric value, throwing an exception if it is not.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Tolerance.Empty">
+ <summary>
+ Returns an empty Tolerance object, equivalent to
+ specifying an exact match.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Tolerance.Mode">
+ <summary>
+ Gets the ToleranceMode for the current Tolerance
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Tolerance.Value">
+ <summary>
+ Gets the value of the current Tolerance instance.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Tolerance.Percent">
+ <summary>
+ Returns a new tolerance, using the current amount as a percentage.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Tolerance.Ulps">
+ <summary>
+ Returns a new tolerance, using the current amount in Ulps.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Tolerance.Days">
+ <summary>
+ Returns a new tolerance with a TimeSpan as the amount, using
+ the current amount as a number of days.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Tolerance.Hours">
+ <summary>
+ Returns a new tolerance with a TimeSpan as the amount, using
+ the current amount as a number of hours.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Tolerance.Minutes">
+ <summary>
+ Returns a new tolerance with a TimeSpan as the amount, using
+ the current amount as a number of minutes.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Tolerance.Seconds">
+ <summary>
+ Returns a new tolerance with a TimeSpan as the amount, using
+ the current amount as a number of seconds.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Tolerance.Milliseconds">
+ <summary>
+ Returns a new tolerance with a TimeSpan as the amount, using
+ the current amount as a number of milliseconds.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Tolerance.Ticks">
+ <summary>
+ Returns a new tolerance with a TimeSpan as the amount, using
+ the current amount as a number of clock ticks.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Constraints.Tolerance.IsEmpty">
+ <summary>
+ Returns true if the current tolerance is empty.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.TypeConstraint">
+ <summary>
+ TypeConstraint is the abstract base for constraints
+ that take a Type as their expected value.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.Constraints.TypeConstraint.expectedType">
+ <summary>
+ The expected Type used by the constraint
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.TypeConstraint.#ctor(System.Type)">
+ <summary>
+ Construct a TypeConstraint for a given Type
+ </summary>
+ <param name="type"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.TypeConstraint.WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the actual value for a failing constraint test to a
+ MessageWriter. TypeConstraints override this method to write
+ the name of the type.
+ </summary>
+ <param name="writer">The writer on which the actual value is displayed</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.ExactTypeConstraint">
+ <summary>
+ ExactTypeConstraint is used to test that an object
+ is of the exact type provided in the constructor
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.#ctor(System.Type)">
+ <summary>
+ Construct an ExactTypeConstraint for a given Type
+ </summary>
+ <param name="type">The expected Type.</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.Matches(System.Object)">
+ <summary>
+ Test that an object is of the exact type specified
+ </summary>
+ <param name="actual">The actual value.</param>
+ <returns>True if the tested object is of the exact type provided, otherwise false.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.ExactTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write the description of this constraint to a MessageWriter
+ </summary>
+ <param name="writer">The MessageWriter to use</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.InstanceOfTypeConstraint">
+ <summary>
+ InstanceOfTypeConstraint is used to test that an object
+ is of the same type provided or derived from it.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.#ctor(System.Type)">
+ <summary>
+ Construct an InstanceOfTypeConstraint for the type provided
+ </summary>
+ <param name="type">The expected Type</param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.Matches(System.Object)">
+ <summary>
+ Test whether an object is of the specified type or a derived type
+ </summary>
+ <param name="actual">The object to be tested</param>
+ <returns>True if the object is of the provided type or derives from it, otherwise false.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.InstanceOfTypeConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a description of this constraint to a MessageWriter
+ </summary>
+ <param name="writer">The MessageWriter to use</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.AssignableFromConstraint">
+ <summary>
+ AssignableFromConstraint is used to test that an object
+ can be assigned from a given Type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.#ctor(System.Type)">
+ <summary>
+ Construct an AssignableFromConstraint for the type provided
+ </summary>
+ <param name="type"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.Matches(System.Object)">
+ <summary>
+ Test whether an object can be assigned from the specified type
+ </summary>
+ <param name="actual">The object to be tested</param>
+ <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AssignableFromConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a description of this constraint to a MessageWriter
+ </summary>
+ <param name="writer">The MessageWriter to use</param>
+ </member>
+ <member name="T:NUnit.Framework.Constraints.AssignableToConstraint">
+ <summary>
+ AssignableToConstraint is used to test that an object
+ can be assigned to a given Type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.#ctor(System.Type)">
+ <summary>
+ Construct an AssignableToConstraint for the type provided
+ </summary>
+ <param name="type"></param>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.Matches(System.Object)">
+ <summary>
+ Test whether an object can be assigned to the specified type
+ </summary>
+ <param name="actual">The object to be tested</param>
+ <returns>True if the object can be assigned a value of the expected Type, otherwise false.</returns>
+ </member>
+ <member name="M:NUnit.Framework.Constraints.AssignableToConstraint.WriteDescriptionTo(NUnit.Framework.Constraints.MessageWriter)">
+ <summary>
+ Write a description of this constraint to a MessageWriter
+ </summary>
+ <param name="writer">The MessageWriter to use</param>
+ </member>
+ <member name="T:NUnit.Framework.AssertionException">
+ <summary>
+ Thrown when an assertion failed.
+ </summary>
+
+ </member>
+ <member name="M:NUnit.Framework.AssertionException.#ctor(System.String)">
+ <param name="message">The error message that explains
+ the reason for the exception</param>
+ </member>
+ <member name="M:NUnit.Framework.AssertionException.#ctor(System.String,System.Exception)">
+ <param name="message">The error message that explains
+ the reason for the exception</param>
+ <param name="inner">The exception that caused the
+ current exception</param>
+ </member>
+ <member name="M:NUnit.Framework.AssertionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Serialization Constructor
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.IgnoreException">
+ <summary>
+ Thrown when an assertion failed.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String)">
+ <param name="message"></param>
+ </member>
+ <member name="M:NUnit.Framework.IgnoreException.#ctor(System.String,System.Exception)">
+ <param name="message">The error message that explains
+ the reason for the exception</param>
+ <param name="inner">The exception that caused the
+ current exception</param>
+ </member>
+ <member name="M:NUnit.Framework.IgnoreException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Serialization Constructor
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.InconclusiveException">
+ <summary>
+ Thrown when a test executes inconclusively.
+ </summary>
+
+ </member>
+ <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.String)">
+ <param name="message">The error message that explains
+ the reason for the exception</param>
+ </member>
+ <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.String,System.Exception)">
+ <param name="message">The error message that explains
+ the reason for the exception</param>
+ <param name="inner">The exception that caused the
+ current exception</param>
+ </member>
+ <member name="M:NUnit.Framework.InconclusiveException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Serialization Constructor
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.SuccessException">
+ <summary>
+ Thrown when an assertion failed.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.SuccessException.#ctor(System.String)">
+ <param name="message"></param>
+ </member>
+ <member name="M:NUnit.Framework.SuccessException.#ctor(System.String,System.Exception)">
+ <param name="message">The error message that explains
+ the reason for the exception</param>
+ <param name="inner">The exception that caused the
+ current exception</param>
+ </member>
+ <member name="M:NUnit.Framework.SuccessException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
+ <summary>
+ Serialization Constructor
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TestDelegate">
+ <summary>
+ Delegate used by tests that execute code and
+ capture any thrown exception.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Assert">
+ <summary>
+ The Assert class contains a collection of static methods that
+ implement the most common assertions used in NUnit.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Assert.#ctor">
+ <summary>
+ We don't actually want any instances of this object, but some people
+ like to inherit from it to add other static methods. Hence, the
+ protected constructor disallows any instances of this object.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Equals(System.Object,System.Object)">
+ <summary>
+ The Equals method throws an AssertionException. This is done
+ to make sure there is no mistake by calling this function.
+ </summary>
+ <param name="a"></param>
+ <param name="b"></param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.ReferenceEquals(System.Object,System.Object)">
+ <summary>
+ override the default ReferenceEquals to throw an AssertionException. This
+ implementation makes sure there is no mistake in calling this function
+ as part of Assert.
+ </summary>
+ <param name="a"></param>
+ <param name="b"></param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AssertDoublesAreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
+ <summary>
+ Helper for Assert.AreEqual(double expected, double actual, ...)
+ allowing code generation to work consistently.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ <param name="delta">The maximum acceptable difference between the
+ the expected and the actual</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:NUnit.Framework.Assert.Pass(System.String,System.Object[])">
+ <summary>
+ Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
+ that are passed in. This allows a test to be cut short, with a result
+ of success returned to NUnit.
+ </summary>
+ <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Pass(System.String)">
+ <summary>
+ Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
+ that are passed in. This allows a test to be cut short, with a result
+ of success returned to NUnit.
+ </summary>
+ <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Pass">
+ <summary>
+ Throws a <see cref="T:NUnit.Framework.SuccessException"/> with the message and arguments
+ that are passed in. This allows a test to be cut short, with a result
+ of success returned to NUnit.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Fail(System.String,System.Object[])">
+ <summary>
+ Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message and arguments
+ that are passed in. This is used by the other Assert functions.
+ </summary>
+ <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Fail(System.String)">
+ <summary>
+ Throws an <see cref="T:NUnit.Framework.AssertionException"/> with the message that is
+ passed in. This is used by the other Assert functions.
+ </summary>
+ <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Fail">
+ <summary>
+ Throws an <see cref="T:NUnit.Framework.AssertionException"/>.
+ This is used by the other Assert functions.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Ignore(System.String,System.Object[])">
+ <summary>
+ Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message and arguments
+ that are passed in. This causes the test to be reported as ignored.
+ </summary>
+ <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Ignore(System.String)">
+ <summary>
+ Throws an <see cref="T:NUnit.Framework.IgnoreException"/> with the message that is
+ passed in. This causes the test to be reported as ignored.
+ </summary>
+ <param name="message">The message to initialize the <see cref="T:NUnit.Framework.AssertionException"/> with.</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Ignore">
+ <summary>
+ Throws an <see cref="T:NUnit.Framework.IgnoreException"/>.
+ This causes the test to be reported as ignored.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Inconclusive(System.String,System.Object[])">
+ <summary>
+ Throws an <see cref="T:NUnit.Framework.InconclusiveException"/> with the message and arguments
+ that are passed in. This causes the test to be reported as inconclusive.
+ </summary>
+ <param name="message">The message to initialize the <see cref="T:NUnit.Framework.InconclusiveException"/> with.</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Inconclusive(System.String)">
+ <summary>
+ Throws an <see cref="T:NUnit.Framework.InconclusiveException"/> with the message that is
+ passed in. This causes the test to be reported as inconclusive.
+ </summary>
+ <param name="message">The message to initialize the <see cref="T:NUnit.Framework.InconclusiveException"/> with.</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Inconclusive">
+ <summary>
+ Throws an <see cref="T:NUnit.Framework.InconclusiveException"/>.
+ This causes the test to be reported as Inconclusive.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="expression">A Constraint to be applied</param>
+ <param name="actual">The actual value to test</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="expression">A Constraint to be applied</param>
+ <param name="actual">The actual value to test</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="expression">A Constraint expression to be applied</param>
+ <param name="actual">The actual value to test</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.Assert.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="expr">A Constraint expression to be applied</param>
+ <param name="del">An ActualValueDelegate returning the value to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="expr">A Constraint expression to be applied</param>
+ <param name="del">An ActualValueDelegate returning the value to be tested</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="del">An ActualValueDelegate returning the value to be tested</param>
+ <param name="expr">A Constraint expression to be applied</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.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Apply a constraint to a referenced value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="expression">A Constraint to be applied</param>
+ <param name="actual">The actual value to test</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
+ <summary>
+ Apply a constraint to a referenced value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="expression">A Constraint to be applied</param>
+ <param name="actual">The actual value to test</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
+ <summary>
+ Apply a constraint to a referenced value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="expression">A Constraint to be applied</param>
+ <param name="actual">The actual value to test</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.Assert.That(System.Boolean,System.String,System.Object[])">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ <param name="message">The message to display if the condition is false</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.That(System.Boolean,System.String)">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ <param name="message">The message to display if the condition is false</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.That(System.Boolean)">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Asserts that the code represented by a delegate throws an exception
+ that satisfies the constraint provided.
+ </summary>
+ <param name="code">A TestDelegate to be executed</param>
+ <param name="constraint">A ThrowsConstraint used in the test</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String,System.Object[])">
+ <summary>
+ Verifies that a delegate throws a particular exception when called.
+ </summary>
+ <param name="expression">A constraint to be satisfied by the exception</param>
+ <param name="code">A TestSnippet delegate</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.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate,System.String)">
+ <summary>
+ Verifies that a delegate throws a particular exception when called.
+ </summary>
+ <param name="expression">A constraint to be satisfied by the exception</param>
+ <param name="code">A TestSnippet delegate</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Throws(NUnit.Framework.Constraints.IResolveConstraint,NUnit.Framework.TestDelegate)">
+ <summary>
+ Verifies that a delegate throws a particular exception when called.
+ </summary>
+ <param name="expression">A constraint to be satisfied by the exception</param>
+ <param name="code">A TestSnippet delegate</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])">
+ <summary>
+ Verifies that a delegate throws a particular exception when called.
+ </summary>
+ <param name="expectedExceptionType">The exception Type expected</param>
+ <param name="code">A TestSnippet delegate</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.Assert.Throws(System.Type,NUnit.Framework.TestDelegate,System.String)">
+ <summary>
+ Verifies that a delegate throws a particular exception when called.
+ </summary>
+ <param name="expectedExceptionType">The exception Type expected</param>
+ <param name="code">A TestSnippet delegate</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Throws(System.Type,NUnit.Framework.TestDelegate)">
+ <summary>
+ Verifies that a delegate throws a particular exception when called.
+ </summary>
+ <param name="expectedExceptionType">The exception Type expected</param>
+ <param name="code">A TestSnippet delegate</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String,System.Object[])">
+ <summary>
+ Verifies that a delegate throws a particular exception when called.
+ </summary>
+ <typeparam name="T">Type of the expected exception</typeparam>
+ <param name="code">A TestSnippet delegate</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.Assert.Throws``1(NUnit.Framework.TestDelegate,System.String)">
+ <summary>
+ Verifies that a delegate throws a particular exception when called.
+ </summary>
+ <typeparam name="T">Type of the expected exception</typeparam>
+ <param name="code">A TestSnippet delegate</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Throws``1(NUnit.Framework.TestDelegate)">
+ <summary>
+ Verifies that a delegate throws a particular exception when called.
+ </summary>
+ <typeparam name="T">Type of the expected exception</typeparam>
+ <param name="code">A TestSnippet delegate</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate,System.String,System.Object[])">
+ <summary>
+ Verifies that a delegate throws an exception when called
+ and returns it.
+ </summary>
+ <param name="code">A TestDelegate</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.Assert.Catch(NUnit.Framework.TestDelegate,System.String)">
+ <summary>
+ Verifies that a delegate throws an exception when called
+ and returns it.
+ </summary>
+ <param name="code">A TestDelegate</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Catch(NUnit.Framework.TestDelegate)">
+ <summary>
+ Verifies that a delegate throws an exception when called
+ and returns it.
+ </summary>
+ <param name="code">A TestDelegate</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String,System.Object[])">
+ <summary>
+ Verifies that a delegate throws an exception of a certain Type
+ or one derived from it when called and returns it.
+ </summary>
+ <param name="expectedExceptionType">The expected Exception Type</param>
+ <param name="code">A TestDelegate</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.Assert.Catch(System.Type,NUnit.Framework.TestDelegate,System.String)">
+ <summary>
+ Verifies that a delegate throws an exception of a certain Type
+ or one derived from it when called and returns it.
+ </summary>
+ <param name="expectedExceptionType">The expected Exception Type</param>
+ <param name="code">A TestDelegate</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Catch(System.Type,NUnit.Framework.TestDelegate)">
+ <summary>
+ Verifies that a delegate throws an exception of a certain Type
+ or one derived from it when called and returns it.
+ </summary>
+ <param name="expectedExceptionType">The expected Exception Type</param>
+ <param name="code">A TestDelegate</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String,System.Object[])">
+ <summary>
+ Verifies that a delegate throws an exception of a certain Type
+ or one derived from it when called and returns it.
+ </summary>
+ <typeparam name="T">The expected Exception Type</typeparam>
+ <param name="code">A TestDelegate</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.Assert.Catch``1(NUnit.Framework.TestDelegate,System.String)">
+ <summary>
+ Verifies that a delegate throws an exception of a certain Type
+ or one derived from it when called and returns it.
+ </summary>
+ <typeparam name="T">The expected Exception Type</typeparam>
+ <param name="code">A TestDelegate</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Catch``1(NUnit.Framework.TestDelegate)">
+ <summary>
+ Verifies that a delegate throws an exception of a certain Type
+ or one derived from it when called and returns it.
+ </summary>
+ <typeparam name="T">The expected Exception Type</typeparam>
+ <param name="code">A TestDelegate</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String,System.Object[])">
+ <summary>
+ Verifies that a delegate does not throw an exception
+ </summary>
+ <param name="code">A TestSnippet delegate</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.Assert.DoesNotThrow(NUnit.Framework.TestDelegate,System.String)">
+ <summary>
+ Verifies that a delegate does not throw an exception.
+ </summary>
+ <param name="code">A TestSnippet delegate</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.DoesNotThrow(NUnit.Framework.TestDelegate)">
+ <summary>
+ Verifies that a delegate does not throw an exception.
+ </summary>
+ <param name="code">A TestSnippet delegate</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.True(System.Boolean,System.String,System.Object[])">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</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:NUnit.Framework.Assert.True(System.Boolean,System.String)">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.True(System.Boolean)">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String,System.Object[])">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</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:NUnit.Framework.Assert.IsTrue(System.Boolean,System.String)">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsTrue(System.Boolean)">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.False(System.Boolean,System.String,System.Object[])">
+ <summary>
+ Asserts that a condition is false. If the condition is true the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</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:NUnit.Framework.Assert.False(System.Boolean,System.String)">
+ <summary>
+ Asserts that a condition is false. If the condition is true the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.False(System.Boolean)">
+ <summary>
+ Asserts that a condition is false. If the condition is true the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String,System.Object[])">
+ <summary>
+ Asserts that a condition is false. If the condition is true the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</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:NUnit.Framework.Assert.IsFalse(System.Boolean,System.String)">
+ <summary>
+ Asserts that a condition is false. If the condition is true the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsFalse(System.Boolean)">
+ <summary>
+ Asserts that a condition is false. If the condition is true the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.NotNull(System.Object,System.String,System.Object[])">
+ <summary>
+ Verifies that the object that is passed in is not equal to <code>null</code>
+ If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="anObject">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:NUnit.Framework.Assert.NotNull(System.Object,System.String)">
+ <summary>
+ Verifies that the object that is passed in is not equal to <code>null</code>
+ If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="anObject">The object that is to be tested</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.NotNull(System.Object)">
+ <summary>
+ Verifies that the object that is passed in is not equal to <code>null</code>
+ If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="anObject">The object that is to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object,System.String,System.Object[])">
+ <summary>
+ Verifies that the object that is passed in is not equal to <code>null</code>
+ If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="anObject">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:NUnit.Framework.Assert.IsNotNull(System.Object,System.String)">
+ <summary>
+ Verifies that the object that is passed in is not equal to <code>null</code>
+ If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="anObject">The object that is to be tested</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotNull(System.Object)">
+ <summary>
+ Verifies that the object that is passed in is not equal to <code>null</code>
+ If the object is <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="anObject">The object that is to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Null(System.Object,System.String,System.Object[])">
+ <summary>
+ Verifies that the object that is passed in is equal to <code>null</code>
+ If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="anObject">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:NUnit.Framework.Assert.Null(System.Object,System.String)">
+ <summary>
+ Verifies that the object that is passed in is equal to <code>null</code>
+ If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="anObject">The object that is to be tested</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Null(System.Object)">
+ <summary>
+ Verifies that the object that is passed in is equal to <code>null</code>
+ If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="anObject">The object that is to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNull(System.Object,System.String,System.Object[])">
+ <summary>
+ Verifies that the object that is passed in is equal to <code>null</code>
+ If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="anObject">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:NUnit.Framework.Assert.IsNull(System.Object,System.String)">
+ <summary>
+ Verifies that the object that is passed in is equal to <code>null</code>
+ If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="anObject">The object that is to be tested</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNull(System.Object)">
+ <summary>
+ Verifies that the object that is passed in is equal to <code>null</code>
+ If the object is not <code>null</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="anObject">The object that is to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNaN(System.Double,System.String,System.Object[])">
+ <summary>
+ Verifies that the double that is passed in is an <code>NaN</code> value.
+ If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="aDouble">The value 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:NUnit.Framework.Assert.IsNaN(System.Double,System.String)">
+ <summary>
+ Verifies that the double that is passed in is an <code>NaN</code> value.
+ If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="aDouble">The value that is to be tested</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNaN(System.Double)">
+ <summary>
+ Verifies that the double that is passed in is an <code>NaN</code> value.
+ If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="aDouble">The value that is to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String,System.Object[])">
+ <summary>
+ Verifies that the double that is passed in is an <code>NaN</code> value.
+ If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="aDouble">The value 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:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double},System.String)">
+ <summary>
+ Verifies that the double that is passed in is an <code>NaN</code> value.
+ If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="aDouble">The value that is to be tested</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNaN(System.Nullable{System.Double})">
+ <summary>
+ Verifies that the double that is passed in is an <code>NaN</code> value.
+ If the object is not <code>NaN</code> then an <see cref="T:NUnit.Framework.AssertionException"/>
+ is thrown.
+ </summary>
+ <param name="aDouble">The value that is to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsEmpty(System.String,System.String,System.Object[])">
+ <summary>
+ Assert that a string is empty - that is equal to string.Empty
+ </summary>
+ <param name="aString">The string 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:NUnit.Framework.Assert.IsEmpty(System.String,System.String)">
+ <summary>
+ Assert that a string is empty - that is equal to string.Empty
+ </summary>
+ <param name="aString">The string to be tested</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsEmpty(System.String)">
+ <summary>
+ Assert that a string is empty - that is equal to string.Empty
+ </summary>
+ <param name="aString">The string to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String,System.Object[])">
+ <summary>
+ Assert that an array, list or other collection is empty
+ </summary>
+ <param name="collection">An array, list or other collection implementing ICollection</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:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection,System.String)">
+ <summary>
+ Assert that an array, list or other collection is empty
+ </summary>
+ <param name="collection">An array, list or other collection implementing ICollection</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsEmpty(System.Collections.ICollection)">
+ <summary>
+ Assert that an array, list or other collection is empty
+ </summary>
+ <param name="collection">An array, list or other collection implementing ICollection</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String,System.Object[])">
+ <summary>
+ Assert that a string is not empty - that is not equal to string.Empty
+ </summary>
+ <param name="aString">The string 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:NUnit.Framework.Assert.IsNotEmpty(System.String,System.String)">
+ <summary>
+ Assert that a string is not empty - that is not equal to string.Empty
+ </summary>
+ <param name="aString">The string to be tested</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.String)">
+ <summary>
+ Assert that a string is not empty - that is not equal to string.Empty
+ </summary>
+ <param name="aString">The string to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String,System.Object[])">
+ <summary>
+ Assert that an array, list or other collection is not empty
+ </summary>
+ <param name="collection">An array, list or other collection implementing ICollection</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:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection,System.String)">
+ <summary>
+ Assert that an array, list or other collection is not empty
+ </summary>
+ <param name="collection">An array, list or other collection implementing ICollection</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotEmpty(System.Collections.ICollection)">
+ <summary>
+ Assert that an array, list or other collection is not empty
+ </summary>
+ <param name="collection">An array, list or other collection implementing ICollection</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String,System.Object[])">
+ <summary>
+ Assert that a string is either null or equal to string.Empty
+ </summary>
+ <param name="aString">The string 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:NUnit.Framework.Assert.IsNullOrEmpty(System.String,System.String)">
+ <summary>
+ Assert that a string is either null or equal to string.Empty
+ </summary>
+ <param name="aString">The string to be tested</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNullOrEmpty(System.String)">
+ <summary>
+ Assert that a string is either null or equal to string.Empty
+ </summary>
+ <param name="aString">The string to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String,System.Object[])">
+ <summary>
+ Assert that a string is not null or empty
+ </summary>
+ <param name="aString">The string 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:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String,System.String)">
+ <summary>
+ Assert that a string is not null or empty
+ </summary>
+ <param name="aString">The string to be tested</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotNullOrEmpty(System.String)">
+ <summary>
+ Assert that a string is not null or empty
+ </summary>
+ <param name="aString">The string to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that an object may be assigned a value of a given Type.
+ </summary>
+ <param name="expected">The expected Type.</param>
+ <param name="actual">The object under examination</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:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object,System.String)">
+ <summary>
+ Asserts that an object may be assigned a value of a given Type.
+ </summary>
+ <param name="expected">The expected Type.</param>
+ <param name="actual">The object under examination</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsAssignableFrom(System.Type,System.Object)">
+ <summary>
+ Asserts that an object may be assigned a value of a given Type.
+ </summary>
+ <param name="expected">The expected Type.</param>
+ <param name="actual">The object under examination</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that an object may be assigned a value of a given Type.
+ </summary>
+ <typeparam name="T">The expected Type.</typeparam>
+ <param name="actual">The object under examination</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:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object,System.String)">
+ <summary>
+ Asserts that an object may be assigned a value of a given Type.
+ </summary>
+ <typeparam name="T">The expected Type.</typeparam>
+ <param name="actual">The object under examination</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsAssignableFrom``1(System.Object)">
+ <summary>
+ Asserts that an object may be assigned a value of a given Type.
+ </summary>
+ <typeparam name="T">The expected Type.</typeparam>
+ <param name="actual">The object under examination</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that an object may not be assigned a value of a given Type.
+ </summary>
+ <param name="expected">The expected Type.</param>
+ <param name="actual">The object under examination</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:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object,System.String)">
+ <summary>
+ Asserts that an object may not be assigned a value of a given Type.
+ </summary>
+ <param name="expected">The expected Type.</param>
+ <param name="actual">The object under examination</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom(System.Type,System.Object)">
+ <summary>
+ Asserts that an object may not be assigned a value of a given Type.
+ </summary>
+ <param name="expected">The expected Type.</param>
+ <param name="actual">The object under examination</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that an object may not be assigned a value of a given Type.
+ </summary>
+ <typeparam name="T">The expected Type.</typeparam>
+ <param name="actual">The object under examination</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:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object,System.String)">
+ <summary>
+ Asserts that an object may not be assigned a value of a given Type.
+ </summary>
+ <typeparam name="T">The expected Type.</typeparam>
+ <param name="actual">The object under examination</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotAssignableFrom``1(System.Object)">
+ <summary>
+ Asserts that an object may not be assigned a value of a given Type.
+ </summary>
+ <typeparam name="T">The expected Type.</typeparam>
+ <param name="actual">The object under examination</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that an object is an instance of a given type.
+ </summary>
+ <param name="expected">The expected Type</param>
+ <param name="actual">The object being 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:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object,System.String)">
+ <summary>
+ Asserts that an object is an instance of a given type.
+ </summary>
+ <param name="expected">The expected Type</param>
+ <param name="actual">The object being examined</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsInstanceOf(System.Type,System.Object)">
+ <summary>
+ Asserts that an object is an instance of a given type.
+ </summary>
+ <param name="expected">The expected Type</param>
+ <param name="actual">The object being examined</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that an object is an instance of a given type.
+ </summary>
+ <param name="expected">The expected Type</param>
+ <param name="actual">The object being 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:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object,System.String)">
+ <summary>
+ Asserts that an object is an instance of a given type.
+ </summary>
+ <param name="expected">The expected Type</param>
+ <param name="actual">The object being examined</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsInstanceOfType(System.Type,System.Object)">
+ <summary>
+ Asserts that an object is an instance of a given type.
+ </summary>
+ <param name="expected">The expected Type</param>
+ <param name="actual">The object being examined</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that an object is an instance of a given type.
+ </summary>
+ <typeparam name="T">The expected Type</typeparam>
+ <param name="actual">The object being 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:NUnit.Framework.Assert.IsInstanceOf``1(System.Object,System.String)">
+ <summary>
+ Asserts that an object is an instance of a given type.
+ </summary>
+ <typeparam name="T">The expected Type</typeparam>
+ <param name="actual">The object being examined</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsInstanceOf``1(System.Object)">
+ <summary>
+ Asserts that an object is an instance of a given type.
+ </summary>
+ <typeparam name="T">The expected Type</typeparam>
+ <param name="actual">The object being examined</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that an object is not an instance of a given type.
+ </summary>
+ <param name="expected">The expected Type</param>
+ <param name="actual">The object being 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:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object,System.String)">
+ <summary>
+ Asserts that an object is not an instance of a given type.
+ </summary>
+ <param name="expected">The expected Type</param>
+ <param name="actual">The object being examined</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotInstanceOf(System.Type,System.Object)">
+ <summary>
+ Asserts that an object is not an instance of a given type.
+ </summary>
+ <param name="expected">The expected Type</param>
+ <param name="actual">The object being examined</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that an object is not an instance of a given type.
+ </summary>
+ <param name="expected">The expected Type</param>
+ <param name="actual">The object being 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:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object,System.String)">
+ <summary>
+ Asserts that an object is not an instance of a given type.
+ </summary>
+ <param name="expected">The expected Type</param>
+ <param name="actual">The object being examined</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotInstanceOfType(System.Type,System.Object)">
+ <summary>
+ Asserts that an object is not an instance of a given type.
+ </summary>
+ <param name="expected">The expected Type</param>
+ <param name="actual">The object being examined</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that an object is not an instance of a given type.
+ </summary>
+ <typeparam name="T">The expected Type</typeparam>
+ <param name="actual">The object being 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:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object,System.String)">
+ <summary>
+ Asserts that an object is not an instance of a given type.
+ </summary>
+ <typeparam name="T">The expected Type</typeparam>
+ <param name="actual">The object being examined</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.IsNotInstanceOf``1(System.Object)">
+ <summary>
+ Asserts that an object is not an instance of a given type.
+ </summary>
+ <typeparam name="T">The expected Type</typeparam>
+ <param name="actual">The object being examined</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String,System.Object[])">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32,System.String)">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreEqual(System.Int32,System.Int32)">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String,System.Object[])">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64,System.String)">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreEqual(System.Int64,System.Int64)">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String)">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32)">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64,System.String)">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreEqual(System.UInt64,System.UInt64)">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
+ <summary>
+ Verifies that two values are equal. If they are not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
+ <summary>
+ Verifies that two doubles are equal considering a delta. If the
+ expected value is infinity then the delta value is ignored. If
+ they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
+ thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ <param name="delta">The maximum acceptable difference between the
+ the expected and the actual</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:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
+ <summary>
+ Verifies that two doubles are equal considering a delta. If the
+ expected value is infinity then the delta value is ignored. If
+ they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
+ thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ <param name="delta">The maximum acceptable difference between the
+ the expected and the actual</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
+ <summary>
+ Verifies that two doubles are equal considering a delta. If the
+ expected value is infinity then the delta value is ignored. If
+ they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
+ thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ <param name="delta">The maximum acceptable difference between the
+ the expected and the actual</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String,System.Object[])">
+ <summary>
+ Verifies that two doubles are equal considering a delta. If the
+ expected value is infinity then the delta value is ignored. If
+ they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
+ thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ <param name="delta">The maximum acceptable difference between the
+ the expected and the actual</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:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double,System.String)">
+ <summary>
+ Verifies that two doubles are equal considering a delta. If the
+ expected value is infinity then the delta value is ignored. If
+ they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
+ thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ <param name="delta">The maximum acceptable difference between the
+ the expected and the actual</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Nullable{System.Double},System.Double)">
+ <summary>
+ Verifies that two doubles are equal considering a delta. If the
+ expected value is infinity then the delta value is ignored. If
+ they are not equal then an <see cref="T:NUnit.Framework.AssertionException"/> is
+ thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ <param name="delta">The maximum acceptable difference between the
+ the expected and the actual</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
+ <summary>
+ Verifies that two objects are equal. Two objects are considered
+ equal if both are null, or if both have the same value. NUnit
+ has special semantics for some object types.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The value that is expected</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:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
+ <summary>
+ Verifies that two objects are equal. Two objects are considered
+ equal if both are null, or if both have the same value. NUnit
+ has special semantics for some object types.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The value that is expected</param>
+ <param name="actual">The actual value</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
+ <summary>
+ Verifies that two objects are equal. Two objects are considered
+ equal if both are null, or if both have the same value. NUnit
+ has special semantics for some object types.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The value that is expected</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String,System.Object[])">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64,System.String)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.Int64,System.Int64)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64,System.String)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.UInt64,System.UInt64)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal,System.String)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.Decimal,System.Decimal)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String,System.Object[])">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single,System.String)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.Single,System.Single)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String,System.Object[])">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double,System.String)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotEqual(System.Double,System.Double)">
+ <summary>
+ Verifies that two values are not equal. If they are equal, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
+ <summary>
+ Verifies that two objects are not equal. Two objects are considered
+ equal if both are null, or if both have the same value. NUnit
+ has special semantics for some object types.
+ If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The value that is expected</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:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
+ <summary>
+ Verifies that two objects are not equal. Two objects are considered
+ equal if both are null, or if both have the same value. NUnit
+ has special semantics for some object types.
+ If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The value that is expected</param>
+ <param name="actual">The actual value</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
+ <summary>
+ Verifies that two objects are not equal. Two objects are considered
+ equal if both are null, or if both have the same value. NUnit
+ has special semantics for some object types.
+ If they are equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The value that is expected</param>
+ <param name="actual">The actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that two objects refer to the same object. If they
+ are not the same an <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreSame(System.Object,System.Object,System.String)">
+ <summary>
+ Asserts that two objects refer to the same object. If they
+ are not the same an <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreSame(System.Object,System.Object)">
+ <summary>
+ Asserts that two objects refer to the same object. If they
+ are not the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected object</param>
+ <param name="actual">The actual object</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that two objects do not refer to the same object. If they
+ are the same an <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object,System.String)">
+ <summary>
+ Asserts that two objects do not refer to the same object. If they
+ are the same an <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.AreNotSame(System.Object,System.Object)">
+ <summary>
+ Asserts that two objects do not refer to the same object. If they
+ are the same an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected object</param>
+ <param name="actual">The actual object</param>
+ </member>
+ <member name="M:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Int32,System.Int32,System.String)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Int32,System.Int32)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32,System.String)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.UInt32,System.UInt32)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Int64,System.Int64,System.String)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Int64,System.Int64)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64,System.String)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.UInt64,System.UInt64)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal,System.String)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Decimal,System.Decimal)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Double,System.Double,System.String)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Double,System.Double)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Single,System.Single,System.String)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.Single,System.Single)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable,System.String)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Greater(System.IComparable,System.IComparable)">
+ <summary>
+ Verifies that the first value is greater than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Int32,System.Int32,System.String)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Int32,System.Int32)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32,System.String)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.UInt32,System.UInt32)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Int64,System.Int64,System.String)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Int64,System.Int64)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64,System.String)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.UInt64,System.UInt64)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal,System.String)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Decimal,System.Decimal)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Double,System.Double,System.String)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Double,System.Double)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Single,System.Single,System.String)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.Single,System.Single)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable,System.String)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Less(System.IComparable,System.IComparable)">
+ <summary>
+ Verifies that the first value is less than the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32,System.String)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Int32,System.Int32)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32,System.String)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.UInt32,System.UInt32)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64,System.String)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Int64,System.Int64)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64,System.String)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.UInt64,System.UInt64)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal,System.String)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Decimal,System.Decimal)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double,System.String)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Double,System.Double)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single,System.String)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.Single,System.Single)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String,System.Object[])">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable,System.String)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.GreaterOrEqual(System.IComparable,System.IComparable)">
+ <summary>
+ Verifies that the first value is greater than or equal tothe second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,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
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32,System.String)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Int32,System.Int32)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,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
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32,System.String)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.UInt32,System.UInt32)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,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
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64,System.String)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Int64,System.Int64)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,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
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64,System.String)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.UInt64,System.UInt64)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,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
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal,System.String)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Decimal,System.Decimal)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,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
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double,System.String)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Double,System.Double)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,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
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single,System.String)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.Single,System.Single)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,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
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable,System.String)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.LessOrEqual(System.IComparable,System.IComparable)">
+ <summary>
+ Verifies that the first value is less than or equal to the second
+ value. If it is not, then an
+ <see cref="T:NUnit.Framework.AssertionException"/> 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:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,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:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection,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:NUnit.Framework.Assert.Contains(System.Object,System.Collections.ICollection)">
+ <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="P:NUnit.Framework.Assert.Counter">
+ <summary>
+ Gets the number of assertions executed so far and
+ resets the counter to zero.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.AssertionHelper">
+ <summary>
+ AssertionHelper is an optional base class for user tests,
+ allowing the use of shorter names for constraints and
+ asserts and avoiding conflict with the definition of
+ <see cref="T:NUnit.Framework.Is"/>, from which it inherits much of its
+ behavior, in certain mock object frameworks.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure. Works
+ identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)"/>
+ </summary>
+ <param name="constraint">A Constraint to be applied</param>
+ <param name="actual">The actual value to test</param>
+ </member>
+ <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure. Works
+ identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)"/>
+ </summary>
+ <param name="constraint">A Constraint to be applied</param>
+ <param name="actual">The actual value to test</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure. Works
+ identically to <see cref="M:NUnit.Framework.Assert.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])"/>
+ </summary>
+ <param name="constraint">A Constraint to be applied</param>
+ <param name="actual">The actual value to test</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.AssertionHelper.Expect(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="expr">A Constraint expression to be applied</param>
+ <param name="del">An ActualValueDelegate returning the value to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="expr">A Constraint expression to be applied</param>
+ <param name="del">An ActualValueDelegate returning the value to be tested</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="del">An ActualValueDelegate returning the value to be tested</param>
+ <param name="expr">A Constraint expression to be applied</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.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Apply a constraint to a referenced value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="constraint">A Constraint to be applied</param>
+ <param name="actual">The actual value to test</param>
+ </member>
+ <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
+ <summary>
+ Apply a constraint to a referenced value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="constraint">A Constraint to be applied</param>
+ <param name="actual">The actual value to test</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.AssertionHelper.Expect``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
+ <summary>
+ Apply a constraint to a referenced value, succeeding if the constraint
+ is satisfied and throwing an assertion exception on failure.
+ </summary>
+ <param name="expression">A Constraint to be applied</param>
+ <param name="actual">The actual value to test</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.AssertionHelper.Expect(System.Boolean,System.String,System.Object[])">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to
+ <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String,System.Object[])"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ <param name="message">The message to display if the condition is false</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean,System.String)">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to
+ <see cref="M:NUnit.Framework.Assert.That(System.Boolean,System.String)"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ <param name="message">The message to display if the condition is false</param>
+ </member>
+ <member name="M:NUnit.Framework.AssertionHelper.Expect(System.Boolean)">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.AssertionException"/>. Works Identically to <see cref="M:NUnit.Framework.Assert.That(System.Boolean)"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ </member>
+ <member name="M:NUnit.Framework.AssertionHelper.Expect(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Asserts that the code represented by a delegate throws an exception
+ that satisfies the constraint provided.
+ </summary>
+ <param name="code">A TestDelegate to be executed</param>
+ <param name="constraint">A ThrowsConstraint used in the test</param>
+ </member>
+ <member name="M:NUnit.Framework.AssertionHelper.Map(System.Collections.ICollection)">
+ <summary>
+ Returns a ListMapper based on a collection.
+ </summary>
+ <param name="original">The original collection</param>
+ <returns></returns>
+ </member>
+ <member name="T:NUnit.Framework.Assume">
+ <summary>
+ Provides static methods to express the assumptions
+ that must be met for a test to give a meaningful
+ result. If an assumption is not met, the test
+ should produce an inconclusive result.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Assume.Equals(System.Object,System.Object)">
+ <summary>
+ The Equals method throws an AssertionException. This is done
+ to make sure there is no mistake by calling this function.
+ </summary>
+ <param name="a"></param>
+ <param name="b"></param>
+ </member>
+ <member name="M:NUnit.Framework.Assume.ReferenceEquals(System.Object,System.Object)">
+ <summary>
+ override the default ReferenceEquals to throw an AssertionException. This
+ implementation makes sure there is no mistake in calling this function
+ as part of Assert.
+ </summary>
+ <param name="a"></param>
+ <param name="b"></param>
+ </member>
+ <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an InconclusiveException on failure.
+ </summary>
+ <param name="expression">A Constraint expression to be applied</param>
+ <param name="actual">The actual value to test</param>
+ </member>
+ <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an InconclusiveException on failure.
+ </summary>
+ <param name="expression">A Constraint expression to be applied</param>
+ <param name="actual">The actual value to test</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assume.That(System.Object,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an InconclusiveException on failure.
+ </summary>
+ <param name="expression">A Constraint expression to be applied</param>
+ <param name="actual">The actual value to test</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.Assume.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an InconclusiveException on failure.
+ </summary>
+ <param name="expr">A Constraint expression to be applied</param>
+ <param name="del">An ActualValueDelegate returning the value to be tested</param>
+ </member>
+ <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an InconclusiveException on failure.
+ </summary>
+ <param name="expr">A Constraint expression to be applied</param>
+ <param name="del">An ActualValueDelegate returning the value to be tested</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.Constraints.ActualValueDelegate,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
+ <summary>
+ Apply a constraint to an actual value, succeeding if the constraint
+ is satisfied and throwing an InconclusiveException on failure.
+ </summary>
+ <param name="del">An ActualValueDelegate returning the value to be tested</param>
+ <param name="expr">A Constraint expression to be applied</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.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Apply a constraint to a referenced value, succeeding if the constraint
+ is satisfied and throwing an InconclusiveException on failure.
+ </summary>
+ <param name="expression">A Constraint expression to be applied</param>
+ <param name="actual">The actual value to test</param>
+ </member>
+ <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String)">
+ <summary>
+ Apply a constraint to a referenced value, succeeding if the constraint
+ is satisfied and throwing an InconclusiveException on failure.
+ </summary>
+ <param name="expression">A Constraint expression to be applied</param>
+ <param name="actual">The actual value to test</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.Assume.That``1(``0@,NUnit.Framework.Constraints.IResolveConstraint,System.String,System.Object[])">
+ <summary>
+ Apply a constraint to a referenced value, succeeding if the constraint
+ is satisfied and throwing an InconclusiveException on failure.
+ </summary>
+ <param name="expression">A Constraint expression to be applied</param>
+ <param name="actual">The actual value to test</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.Assume.That(System.Boolean,System.String,System.Object[])">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.InconclusiveException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ <param name="message">The message to display if the condition is false</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.Assume.That(System.Boolean,System.String)">
+ <summary>
+ Asserts that a condition is true. If the condition is false the method throws
+ an <see cref="T:NUnit.Framework.InconclusiveException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ <param name="message">The message to display if the condition is false</param>
+ </member>
+ <member name="M:NUnit.Framework.Assume.That(System.Boolean)">
+ <summary>
+ Asserts that a condition is true. If the condition is false the
+ method throws an <see cref="T:NUnit.Framework.InconclusiveException"/>.
+ </summary>
+ <param name="condition">The evaluated condition</param>
+ </member>
+ <member name="M:NUnit.Framework.Assume.That(NUnit.Framework.TestDelegate,NUnit.Framework.Constraints.IResolveConstraint)">
+ <summary>
+ Asserts that the code represented by a delegate throws an exception
+ that satisfies the constraint provided.
+ </summary>
+ <param name="code">A TestDelegate to be executed</param>
+ <param name="constraint">A ThrowsConstraint used in the test</param>
+ </member>
+ <member name="T:NUnit.Framework.CollectionAssert">
+ <summary>
+ A set of Assert methods operationg on one or more collections
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.Equals(System.Object,System.Object)">
+ <summary>
+ The Equals method throws an AssertionException. This is done
+ to make sure there is no mistake by calling this function.
+ </summary>
+ <param name="a"></param>
+ <param name="b"></param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.ReferenceEquals(System.Object,System.Object)">
+ <summary>
+ override the default ReferenceEquals to throw an AssertionException. This
+ implementation makes sure there is no mistake in calling this function
+ as part of Assert.
+ </summary>
+ <param name="a"></param>
+ <param name="b"></param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type)">
+ <summary>
+ Asserts that all items contained in collection are of the type specified by expectedType.
+ </summary>
+ <param name="collection">IEnumerable containing objects to be considered</param>
+ <param name="expectedType">System.Type that all objects in collection must be instances of</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String)">
+ <summary>
+ Asserts that all items contained in collection are of the type specified by expectedType.
+ </summary>
+ <param name="collection">IEnumerable containing objects to be considered</param>
+ <param name="expectedType">System.Type that all objects in collection must be instances of</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreInstancesOfType(System.Collections.IEnumerable,System.Type,System.String,System.Object[])">
+ <summary>
+ Asserts that all items contained in collection are of the type specified by expectedType.
+ </summary>
+ <param name="collection">IEnumerable containing objects to be considered</param>
+ <param name="expectedType">System.Type that all objects in collection must be instances of</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.AllItemsAreNotNull(System.Collections.IEnumerable)">
+ <summary>
+ Asserts that all items contained in collection are not equal to null.
+ </summary>
+ <param name="collection">IEnumerable containing objects to be considered</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String)">
+ <summary>
+ Asserts that all items contained in collection are not equal to null.
+ </summary>
+ <param name="collection">IEnumerable containing objects to be considered</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreNotNull(System.Collections.IEnumerable,System.String,System.Object[])">
+ <summary>
+ Asserts that all items contained in collection are not equal to null.
+ </summary>
+ <param name="collection">IEnumerable of objects 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.AllItemsAreUnique(System.Collections.IEnumerable)">
+ <summary>
+ Ensures that every object contained in collection exists within the collection
+ once and only once.
+ </summary>
+ <param name="collection">IEnumerable of objects to be considered</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String)">
+ <summary>
+ Ensures that every object contained in collection exists within the collection
+ once and only once.
+ </summary>
+ <param name="collection">IEnumerable of objects to be considered</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AllItemsAreUnique(System.Collections.IEnumerable,System.String,System.Object[])">
+ <summary>
+ Ensures that every object contained in collection exists within the collection
+ once and only once.
+ </summary>
+ <param name="collection">IEnumerable of objects 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.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
+ <summary>
+ Asserts that expected and actual are exactly equal. The collections must have the same count,
+ and contain the exact same objects in the same order.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
+ <summary>
+ Asserts that expected and actual are exactly equal. The collections must have the same count,
+ and contain the exact same objects in the same order.
+ If comparer is not null then it will be used to compare the objects.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
+ <summary>
+ Asserts that expected and actual are exactly equal. The collections must have the same count,
+ and contain the exact same objects in the same order.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
+ <summary>
+ Asserts that expected and actual are exactly equal. The collections must have the same count,
+ and contain the exact same objects in the same order.
+ If comparer is not null then it will be used to compare the objects.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
+ <summary>
+ Asserts that expected and actual are exactly equal. The collections must have the same count,
+ and contain the exact same objects in the same order.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects 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.AreEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
+ <summary>
+ Asserts that expected and actual are exactly equal. The collections must have the same count,
+ and contain the exact same objects in the same order.
+ If comparer is not null then it will be used to compare the objects.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</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.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
+ <summary>
+ Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
+ <summary>
+ Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AreEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
+ <summary>
+ Asserts that expected and actual are equivalent, containing the same objects but the match may be in any order.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects 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.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable)">
+ <summary>
+ Asserts that expected and actual are not exactly equal.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer)">
+ <summary>
+ Asserts that expected and actual are not exactly equal.
+ If comparer is not null then it will be used to compare the objects.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
+ <summary>
+ Asserts that expected and actual are not exactly equal.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
+ <summary>
+ Asserts that expected and actual are not exactly equal.
+ If comparer is not null then it will be used to compare the objects.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
+ <summary>
+ Asserts that expected and actual are not exactly equal.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects 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.AreNotEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
+ <summary>
+ Asserts that expected and actual are not exactly equal.
+ If comparer is not null then it will be used to compare the objects.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ <param name="comparer">The IComparer to use in comparing objects from each IEnumerable</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.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable)">
+ <summary>
+ Asserts that expected and actual are not equivalent.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String)">
+ <summary>
+ Asserts that expected and actual are not equivalent.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects to be considered</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.AreNotEquivalent(System.Collections.IEnumerable,System.Collections.IEnumerable,System.String,System.Object[])">
+ <summary>
+ Asserts that expected and actual are not equivalent.
+ </summary>
+ <param name="expected">The first IEnumerable of objects to be considered</param>
+ <param name="actual">The second IEnumerable of objects 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.Contains(System.Collections.IEnumerable,System.Object)">
+ <summary>
+ Asserts that collection contains actual as an item.
+ </summary>
+ <param name="collection">IEnumerable of objects to be considered</param>
+ <param name="actual">Object to be found within collection</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String)">
+ <summary>
+ Asserts that collection contains actual as an item.
+ </summary>
+ <param name="collection">IEnumerable of objects to be considered</param>
+ <param name="actual">Object to be found within collection</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.Contains(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that collection contains actual as an item.
+ </summary>
+ <param name="collection">IEnumerable of objects to be considered</param>
+ <param name="actual">Object to be found within collection</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.DoesNotContain(System.Collections.IEnumerable,System.Object)">
+ <summary>
+ Asserts that collection does not contain actual as an item.
+ </summary>
+ <param name="collection">IEnumerable of objects to be considered</param>
+ <param name="actual">Object that cannot exist within collection</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String)">
+ <summary>
+ Asserts that collection does not contain actual as an item.
+ </summary>
+ <param name="collection">IEnumerable of objects to be considered</param>
+ <param name="actual">Object that cannot exist within collection</param>
+ <param name="message">The message that will be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.DoesNotContain(System.Collections.IEnumerable,System.Object,System.String,System.Object[])">
+ <summary>
+ Asserts that collection does not contain actual as an item.
+ </summary>
+ <param name="collection">IEnumerable of objects to be considered</param>
+ <param name="actual">Object that cannot exist within collection</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.IsNotSubsetOf(System.Collections.IEnumerable,System.Collections.IEnumerable)">
+ <summary>
+ Asserts that superset is not a subject of subset.
+ </summary>
+ <param name="subset">The IEnumerable superset to be considered</param>
+ <param name="superset">The IEnumerable subset 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.
+ </summary>
+ <param name="subset">The IEnumerable superset to be considered</param>
+ <param name="superset">The IEnumerable subset 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.
+ </summary>
+ <param name="subset">The IEnumerable superset to be considered</param>
+ <param name="superset">The IEnumerable subset 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.
+ </summary>
+ <param name="subset">The IEnumerable superset to be considered</param>
+ <param name="superset">The IEnumerable subset 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.
+ </summary>
+ <param name="subset">The IEnumerable superset to be considered</param>
+ <param name="superset">The IEnumerable subset 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.
+ </summary>
+ <param name="subset">The IEnumerable superset to be considered</param>
+ <param name="superset">The IEnumerable subset 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.IsEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
+ <summary>
+ Assert that an array, list or other collection is empty
+ </summary>
+ <param name="collection">An array, list or other collection implementing IEnumerable</param>
+ <param name="message">The message to be displayed on failure</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable,System.String)">
+ <summary>
+ Assert that an array, list or other collection is empty
+ </summary>
+ <param name="collection">An array, list or other collection implementing IEnumerable</param>
+ <param name="message">The message to be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.IsEmpty(System.Collections.IEnumerable)">
+ <summary>
+ Assert that an array,list or other collection is empty
+ </summary>
+ <param name="collection">An array, list or other collection implementing IEnumerable</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String,System.Object[])">
+ <summary>
+ Assert that an array, list or other collection is empty
+ </summary>
+ <param name="collection">An array, list or other collection implementing IEnumerable</param>
+ <param name="message">The message to be displayed on failure</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable,System.String)">
+ <summary>
+ Assert that an array, list or other collection is empty
+ </summary>
+ <param name="collection">An array, list or other collection implementing IEnumerable</param>
+ <param name="message">The message to be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.IsNotEmpty(System.Collections.IEnumerable)">
+ <summary>
+ Assert that an array,list or other collection is empty
+ </summary>
+ <param name="collection">An array, list or other collection implementing IEnumerable</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String,System.Object[])">
+ <summary>
+ Assert that an array, list or other collection is ordered
+ </summary>
+ <param name="collection">An array, list or other collection implementing IEnumerable</param>
+ <param name="message">The message to be displayed on failure</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.String)">
+ <summary>
+ Assert that an array, list or other collection is ordered
+ </summary>
+ <param name="collection">An array, list or other collection implementing IEnumerable</param>
+ <param name="message">The message to be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable)">
+ <summary>
+ Assert that an array, list or other collection is ordered
+ </summary>
+ <param name="collection">An array, list or other collection implementing IEnumerable</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String,System.Object[])">
+ <summary>
+ Assert that an array, list or other collection is ordered
+ </summary>
+ <param name="collection">An array, list or other collection implementing IEnumerable</param>
+ <param name="comparer">A custom comparer to perform the comparisons</param>
+ <param name="message">The message to be displayed on failure</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer,System.String)">
+ <summary>
+ Assert that an array, list or other collection is ordered
+ </summary>
+ <param name="collection">An array, list or other collection implementing IEnumerable</param>
+ <param name="comparer">A custom comparer to perform the comparisons</param>
+ <param name="message">The message to be displayed on failure</param>
+ </member>
+ <member name="M:NUnit.Framework.CollectionAssert.IsOrdered(System.Collections.IEnumerable,System.Collections.IComparer)">
+ <summary>
+ Assert that an array, list or other collection is ordered
+ </summary>
+ <param name="collection">An array, list or other collection implementing IEnumerable</param>
+ <param name="comparer">A custom comparer to perform the comparisons</param>
+ </member>
+ <member name="T:NUnit.Framework.Contains">
+ <summary>
+ Static helper class used in the constraint-based syntax
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Contains.Substring(System.String)">
+ <summary>
+ Creates a new SubstringConstraint
+ </summary>
+ <param name="substring">The value of the substring</param>
+ <returns>A SubstringConstraint</returns>
+ </member>
+ <member name="M:NUnit.Framework.Contains.Item(System.Object)">
+ <summary>
+ Creates a new CollectionContainsConstraint.
+ </summary>
+ <param name="item">The item that should be found.</param>
+ <returns>A new CollectionContainsConstraint</returns>
+ </member>
+ <member name="T:NUnit.Framework.DirectoryAssert">
+ <summary>
+ Summary description for DirectoryAssert
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.Equals(System.Object,System.Object)">
+ <summary>
+ The Equals method throws an AssertionException. This is done
+ to make sure there is no mistake by calling this function.
+ </summary>
+ <param name="a"></param>
+ <param name="b"></param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.ReferenceEquals(System.Object,System.Object)">
+ <summary>
+ override the default ReferenceEquals to throw an AssertionException. This
+ implementation makes sure there is no mistake in calling this function
+ as part of Assert.
+ </summary>
+ <param name="a"></param>
+ <param name="b"></param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.#ctor">
+ <summary>
+ We don't actually want any instances of this object, but some people
+ like to inherit from it to add other static methods. Hence, the
+ protected constructor disallows any instances of this object.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
+ <summary>
+ Verifies that two directories are equal. Two directories are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A directory containing the value that is expected</param>
+ <param name="actual">A directory containing the actual value</param>
+ <param name="message">The message to display if directories are not equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
+ <summary>
+ Verifies that two directories are equal. Two directories are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A directory containing the value that is expected</param>
+ <param name="actual">A directory containing the actual value</param>
+ <param name="message">The message to display if directories are not equal</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
+ <summary>
+ Verifies that two directories are equal. Two directories are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A directory containing the value that is expected</param>
+ <param name="actual">A directory containing the actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Verifies that two directories are equal. Two directories are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A directory path string containing the value that is expected</param>
+ <param name="actual">A directory path string containing the actual value</param>
+ <param name="message">The message to display if directories are not equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String,System.String)">
+ <summary>
+ Verifies that two directories are equal. Two directories are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A directory path string containing the value that is expected</param>
+ <param name="actual">A directory path string containing the actual value</param>
+ <param name="message">The message to display if directories are not equal</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.AreEqual(System.String,System.String)">
+ <summary>
+ Verifies that two directories are equal. Two directories are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A directory path string containing the value that is expected</param>
+ <param name="actual">A directory path string containing the actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
+ <summary>
+ Asserts that two directories are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A directory containing the value that is expected</param>
+ <param name="actual">A directory containing the actual value</param>
+ <param name="message">The message to display if directories are not equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
+ <summary>
+ Asserts that two directories are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A directory containing the value that is expected</param>
+ <param name="actual">A directory containing the actual value</param>
+ <param name="message">The message to display if directories are not equal</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
+ <summary>
+ Asserts that two directories are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A directory containing the value that is expected</param>
+ <param name="actual">A directory containing the actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that two directories are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A directory path string containing the value that is expected</param>
+ <param name="actual">A directory path string containing the actual value</param>
+ <param name="message">The message to display if directories are equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String,System.String)">
+ <summary>
+ Asserts that two directories are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A directory path string containing the value that is expected</param>
+ <param name="actual">A directory path string containing the actual value</param>
+ <param name="message">The message to display if directories are equal</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.AreNotEqual(System.String,System.String)">
+ <summary>
+ Asserts that two directories are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A directory path string containing the value that is expected</param>
+ <param name="actual">A directory path string containing the actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo,System.String,System.Object[])">
+ <summary>
+ Asserts that the directory is empty. If it is not empty
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="message">The message to display if directories are not equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo,System.String)">
+ <summary>
+ Asserts that the directory is empty. If it is not empty
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="message">The message to display if directories are not equal</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.IO.DirectoryInfo)">
+ <summary>
+ Asserts that the directory is empty. If it is not empty
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that the directory is empty. If it is not empty
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="message">The message to display if directories are not equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String,System.String)">
+ <summary>
+ Asserts that the directory is empty. If it is not empty
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="message">The message to display if directories are not equal</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsEmpty(System.String)">
+ <summary>
+ Asserts that the directory is empty. If it is not empty
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo,System.String,System.Object[])">
+ <summary>
+ Asserts that the directory is not empty. If it is empty
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="message">The message to display if directories are not equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo,System.String)">
+ <summary>
+ Asserts that the directory is not empty. If it is empty
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="message">The message to display if directories are not equal</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.IO.DirectoryInfo)">
+ <summary>
+ Asserts that the directory is not empty. If it is empty
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that the directory is not empty. If it is empty
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="message">The message to display if directories are not equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String,System.String)">
+ <summary>
+ Asserts that the directory is not empty. If it is empty
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="message">The message to display if directories are not equal</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsNotEmpty(System.String)">
+ <summary>
+ Asserts that the directory is not empty. If it is empty
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
+ <summary>
+ Asserts that path contains actual as a subdirectory or
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="actual">sub-directory asserted to exist under directory</param>
+ <param name="message">The message to display if directory is not within the path</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
+ <summary>
+ Asserts that path contains actual as a subdirectory or
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="actual">sub-directory asserted to exist under directory</param>
+ <param name="message">The message to display if directory is not within the path</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
+ <summary>
+ Asserts that path contains actual as a subdirectory or
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="actual">sub-directory asserted to exist under directory</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that path contains actual as a subdirectory or
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="actual">sub-directory asserted to exist under directory</param>
+ <param name="message">The message to display if directory is not within the path</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String,System.String)">
+ <summary>
+ Asserts that path contains actual as a subdirectory or
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="actual">sub-directory asserted to exist under directory</param>
+ <param name="message">The message to display if directory is not within the path</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsWithin(System.String,System.String)">
+ <summary>
+ Asserts that path contains actual as a subdirectory or
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="actual">sub-directory asserted to exist under directory</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String,System.Object[])">
+ <summary>
+ Asserts that path does not contain actual as a subdirectory or
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="actual">sub-directory asserted to exist under directory</param>
+ <param name="message">The message to display if directory is not within the path</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo,System.String)">
+ <summary>
+ Asserts that path does not contain actual as a subdirectory or
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="actual">sub-directory asserted to exist under directory</param>
+ <param name="message">The message to display if directory is not within the path</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.IO.DirectoryInfo,System.IO.DirectoryInfo)">
+ <summary>
+ Asserts that path does not contain actual as a subdirectory or
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="actual">sub-directory asserted to exist under directory</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that path does not contain actual as a subdirectory or
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="actual">sub-directory asserted to exist under directory</param>
+ <param name="message">The message to display if directory is not within the path</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String,System.String)">
+ <summary>
+ Asserts that path does not contain actual as a subdirectory or
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="actual">sub-directory asserted to exist under directory</param>
+ <param name="message">The message to display if directory is not within the path</param>
+ </member>
+ <member name="M:NUnit.Framework.DirectoryAssert.IsNotWithin(System.String,System.String)">
+ <summary>
+ Asserts that path does not contain actual as a subdirectory or
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="directory">A directory to search</param>
+ <param name="actual">sub-directory asserted to exist under directory</param>
+ </member>
+ <member name="T:NUnit.Framework.FileAssert">
+ <summary>
+ Summary description for FileAssert.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.Equals(System.Object,System.Object)">
+ <summary>
+ The Equals method throws an AssertionException. This is done
+ to make sure there is no mistake by calling this function.
+ </summary>
+ <param name="a"></param>
+ <param name="b"></param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.ReferenceEquals(System.Object,System.Object)">
+ <summary>
+ override the default ReferenceEquals to throw an AssertionException. This
+ implementation makes sure there is no mistake in calling this function
+ as part of Assert.
+ </summary>
+ <param name="a"></param>
+ <param name="b"></param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.#ctor">
+ <summary>
+ We don't actually want any instances of this object, but some people
+ like to inherit from it to add other static methods. Hence, the
+ protected constructor disallows any instances of this object.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
+ <summary>
+ Verifies that two Streams are equal. Two Streams are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected Stream</param>
+ <param name="actual">The actual Stream</param>
+ <param name="message">The message to display if Streams are not equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream,System.String)">
+ <summary>
+ Verifies that two Streams are equal. Two Streams are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected Stream</param>
+ <param name="actual">The actual Stream</param>
+ <param name="message">The message to display if objects are not equal</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.Stream,System.IO.Stream)">
+ <summary>
+ Verifies that two Streams are equal. Two Streams are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected Stream</param>
+ <param name="actual">The actual Stream</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
+ <summary>
+ Verifies that two files are equal. Two files are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A file containing the value that is expected</param>
+ <param name="actual">A file containing the actual value</param>
+ <param name="message">The message to display if Streams are not equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
+ <summary>
+ Verifies that two files are equal. Two files are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A file containing the value that is expected</param>
+ <param name="actual">A file containing the actual value</param>
+ <param name="message">The message to display if objects are not equal</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreEqual(System.IO.FileInfo,System.IO.FileInfo)">
+ <summary>
+ Verifies that two files are equal. Two files are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A file containing the value that is expected</param>
+ <param name="actual">A file containing the actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Verifies that two files are equal. Two files are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The path to a file containing the value that is expected</param>
+ <param name="actual">The path to a file containing the actual value</param>
+ <param name="message">The message to display if Streams are not equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String,System.String)">
+ <summary>
+ Verifies that two files are equal. Two files are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The path to a file containing the value that is expected</param>
+ <param name="actual">The path to a file containing the actual value</param>
+ <param name="message">The message to display if objects are not equal</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreEqual(System.String,System.String)">
+ <summary>
+ Verifies that two files are equal. Two files are considered
+ equal if both are null, or if both have the same value byte for byte.
+ If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The path to a file containing the value that is expected</param>
+ <param name="actual">The path to a file containing the actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String,System.Object[])">
+ <summary>
+ Asserts that two Streams are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected Stream</param>
+ <param name="actual">The actual Stream</param>
+ <param name="message">The message to be displayed when the two Stream are the same.</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream,System.String)">
+ <summary>
+ Asserts that two Streams are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected Stream</param>
+ <param name="actual">The actual Stream</param>
+ <param name="message">The message to be displayed when the Streams are the same.</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.Stream,System.IO.Stream)">
+ <summary>
+ Asserts that two Streams are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The expected Stream</param>
+ <param name="actual">The actual Stream</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String,System.Object[])">
+ <summary>
+ Asserts that two files are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A file containing the value that is expected</param>
+ <param name="actual">A file containing the actual value</param>
+ <param name="message">The message to display if Streams are not equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo,System.String)">
+ <summary>
+ Asserts that two files are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A file containing the value that is expected</param>
+ <param name="actual">A file containing the actual value</param>
+ <param name="message">The message to display if objects are not equal</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.IO.FileInfo,System.IO.FileInfo)">
+ <summary>
+ Asserts that two files are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">A file containing the value that is expected</param>
+ <param name="actual">A file containing the actual value</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that two files are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The path to a file containing the value that is expected</param>
+ <param name="actual">The path to a file containing the actual value</param>
+ <param name="message">The message to display if Streams are not equal</param>
+ <param name="args">Arguments to be used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String,System.String)">
+ <summary>
+ Asserts that two files are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The path to a file containing the value that is expected</param>
+ <param name="actual">The path to a file containing the actual value</param>
+ <param name="message">The message to display if objects are not equal</param>
+ </member>
+ <member name="M:NUnit.Framework.FileAssert.AreNotEqual(System.String,System.String)">
+ <summary>
+ Asserts that two files are not equal. If they are equal
+ an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
+ </summary>
+ <param name="expected">The path to a file containing the value that is expected</param>
+ <param name="actual">The path to a file containing the actual value</param>
+ </member>
+ <member name="T:NUnit.Framework.GlobalSettings">
+ <summary>
+ GlobalSettings is a place for setting default values used
+ by the framework in performing asserts.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.GlobalSettings.DefaultFloatingPointTolerance">
+ <summary>
+ Default tolerance for floating point equality
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Has">
+ <summary>
+ Helper class with properties and methods that supply
+ a number of constraints used in Asserts.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Has.Property(System.String)">
+ <summary>
+ Returns a new PropertyConstraintExpression, which will either
+ test for the existence of the named property on the object
+ being tested or apply any following constraint to that property.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Has.Attribute(System.Type)">
+ <summary>
+ Returns a new AttributeConstraint checking for the
+ presence of a particular attribute on an object.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Has.Attribute``1">
+ <summary>
+ Returns a new AttributeConstraint checking for the
+ presence of a particular attribute on an object.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Has.Member(System.Object)">
+ <summary>
+ Returns a new CollectionContainsConstraint checking for the
+ presence of a particular object in the collection.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Has.No">
+ <summary>
+ Returns a ConstraintExpression that negates any
+ following constraint.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Has.All">
+ <summary>
+ Returns a ConstraintExpression, which will apply
+ the following constraint to all members of a collection,
+ succeeding if all of them succeed.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Has.Some">
+ <summary>
+ Returns a ConstraintExpression, which will apply
+ the following constraint to all members of a collection,
+ succeeding if at least one of them succeeds.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Has.None">
+ <summary>
+ Returns a ConstraintExpression, which will apply
+ the following constraint to all members of a collection,
+ succeeding if all of them fail.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Has.Length">
+ <summary>
+ Returns a new ConstraintExpression, which will apply the following
+ constraint to the Length property of the object being tested.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Has.Count">
+ <summary>
+ Returns a new ConstraintExpression, which will apply the following
+ constraint to the Count property of the object being tested.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Has.Message">
+ <summary>
+ Returns a new ConstraintExpression, which will apply the following
+ constraint to the Message property of the object being tested.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Has.InnerException">
+ <summary>
+ Returns a new ConstraintExpression, which will apply the following
+ constraint to the InnerException property of the object being tested.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.IExpectException">
+ <summary>
+ Interface implemented by a user fixture in order to
+ validate any expected exceptions. It is only called
+ for test methods marked with the ExpectedException
+ attribute.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.IExpectException.HandleException(System.Exception)">
+ <summary>
+ Method to handle an expected exception
+ </summary>
+ <param name="ex">The exception to be handled</param>
+ </member>
+ <member name="T:NUnit.Framework.Is">
+ <summary>
+ Helper class with properties and methods that supply
+ a number of constraints used in Asserts.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.EqualTo(System.Object)">
+ <summary>
+ Returns a constraint that tests two items for equality
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.SameAs(System.Object)">
+ <summary>
+ Returns a constraint that tests that two references are the same object
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.GreaterThan(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is greater than the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.GreaterThanOrEqualTo(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is greater than or equal to the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.AtLeast(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is greater than or equal to the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.LessThan(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is less than the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.LessThanOrEqualTo(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is less than or equal to the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.AtMost(System.Object)">
+ <summary>
+ Returns a constraint that tests whether the
+ actual value is less than or equal to the suppled argument
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.TypeOf(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual
+ value is of the exact type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.TypeOf``1">
+ <summary>
+ Returns a constraint that tests whether the actual
+ value is of the exact type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.InstanceOf(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is of the type supplied as an argument or a derived type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.InstanceOf``1">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is of the type supplied as an argument or a derived type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.InstanceOfType(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is of the type supplied as an argument or a derived type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.InstanceOfType``1">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is of the type supplied as an argument or a derived type.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.AssignableFrom(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is assignable from the type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.AssignableFrom``1">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is assignable from the type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.AssignableTo(System.Type)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is assignable from the type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.AssignableTo``1">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is assignable from the type supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.EquivalentTo(System.Collections.IEnumerable)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is a collection containing the same elements as the
+ collection supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.SubsetOf(System.Collections.IEnumerable)">
+ <summary>
+ Returns a constraint that tests whether the actual value
+ is a subset of the collection supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.StringContaining(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value contains the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.StringStarting(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value starts with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.StringEnding(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value ends with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.StringMatching(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value matches the Regex pattern supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.SamePath(System.String)">
+ <summary>
+ Returns a constraint that tests whether the path provided
+ is the same as an expected path after canonicalization.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.SubPath(System.String)">
+ <summary>
+ Returns a constraint that tests whether the path provided
+ is the same path or under an expected path after canonicalization.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.SamePathOrUnder(System.String)">
+ <summary>
+ Returns a constraint that tests whether the path provided
+ is the same path or under an expected path after canonicalization.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Is.InRange(System.IComparable,System.IComparable)">
+ <summary>
+ Returns a constraint that tests whether the actual value falls
+ within a specified range.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Is.Not">
+ <summary>
+ Returns a ConstraintExpression that negates any
+ following constraint.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Is.All">
+ <summary>
+ Returns a ConstraintExpression, which will apply
+ the following constraint to all members of a collection,
+ succeeding if all of them succeed.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Is.Null">
+ <summary>
+ Returns a constraint that tests for null
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Is.True">
+ <summary>
+ Returns a constraint that tests for True
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Is.False">
+ <summary>
+ Returns a constraint that tests for False
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Is.NaN">
+ <summary>
+ Returns a constraint that tests for NaN
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Is.Empty">
+ <summary>
+ Returns a constraint that tests for empty
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Is.Unique">
+ <summary>
+ Returns a constraint that tests whether a collection
+ contains all unique items.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Is.BinarySerializable">
+ <summary>
+ Returns a constraint that tests whether an object graph is serializable in binary format.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Is.XmlSerializable">
+ <summary>
+ Returns a constraint that tests whether an object graph is serializable in xml format.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Is.Ordered">
+ <summary>
+ Returns a constraint that tests whether a collection is ordered
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Iz">
+ <summary>
+ The Iz class is a synonym for Is intended for use in VB,
+ which regards Is as a keyword.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.List">
+ <summary>
+ The List class is a helper class with properties and methods
+ that supply a number of constraints used with lists and collections.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.List.Map(System.Collections.ICollection)">
+ <summary>
+ List.Map returns a ListMapper, which can be used to map
+ the original collection to another collection.
+ </summary>
+ <param name="actual"></param>
+ <returns></returns>
+ </member>
+ <member name="T:NUnit.Framework.ListMapper">
+ <summary>
+ ListMapper is used to transform a collection used as an actual argument
+ producing another collection to be used in the assertion.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.ListMapper.#ctor(System.Collections.ICollection)">
+ <summary>
+ Construct a ListMapper based on a collection
+ </summary>
+ <param name="original">The collection to be transformed</param>
+ </member>
+ <member name="M:NUnit.Framework.ListMapper.Property(System.String)">
+ <summary>
+ Produces a collection containing all the values of a property
+ </summary>
+ <param name="name">The collection of property values</param>
+ <returns></returns>
+ </member>
+ <member name="T:NUnit.Framework.Randomizer">
+ <summary>
+ Randomizer returns a set of random values in a repeatable
+ way, to allow re-running of tests if necessary.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Randomizer.GetRandomizer(System.Reflection.MemberInfo)">
+ <summary>
+ Get a randomizer for a particular member, returning
+ one that has already been created if it exists.
+ This ensures that the same values are generated
+ each time the tests are reloaded.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Randomizer.GetRandomizer(System.Reflection.ParameterInfo)">
+ <summary>
+ Get a randomizer for a particular parameter, returning
+ one that has already been created if it exists.
+ This ensures that the same values are generated
+ each time the tests are reloaded.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Randomizer.#ctor">
+ <summary>
+ Construct a randomizer using a random seed
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Randomizer.#ctor(System.Int32)">
+ <summary>
+ Construct a randomizer using a specified seed
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Randomizer.GetDoubles(System.Int32)">
+ <summary>
+ Return an array of random doubles between 0.0 and 1.0.
+ </summary>
+ <param name="count"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.Randomizer.GetDoubles(System.Double,System.Double,System.Int32)">
+ <summary>
+ Return an array of random doubles with values in a specified range.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Randomizer.GetInts(System.Int32,System.Int32,System.Int32)">
+ <summary>
+ Return an array of random ints with values in a specified range.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Randomizer.RandomSeed">
+ <summary>
+ Get a random seed for use in creating a randomizer.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.SpecialValue">
+ <summary>
+ The SpecialValue enum is used to represent TestCase arguments
+ that cannot be used as arguments to an Attribute.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.SpecialValue.Null">
+ <summary>
+ Null represents a null value, which cannot be used as an
+ argument to an attriute under .NET 1.x
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.StringAssert">
+ <summary>
+ Basic Asserts on strings.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.Equals(System.Object,System.Object)">
+ <summary>
+ The Equals method throws an AssertionException. This is done
+ to make sure there is no mistake by calling this function.
+ </summary>
+ <param name="a"></param>
+ <param name="b"></param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.ReferenceEquals(System.Object,System.Object)">
+ <summary>
+ override the default ReferenceEquals to throw an AssertionException. This
+ implementation makes sure there is no mistake in calling this function
+ as part of Assert.
+ </summary>
+ <param name="a"></param>
+ <param name="b"></param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that a string is found within another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ <param name="message">The message to display in case of failure</param>
+ <param name="args">Arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String,System.String)">
+ <summary>
+ Asserts that a string is found within another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.Contains(System.String,System.String)">
+ <summary>
+ Asserts that a string is found within another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that a string is not found within another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ <param name="message">The message to display in case of failure</param>
+ <param name="args">Arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String,System.String)">
+ <summary>
+ Asserts that a string is found within another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.DoesNotContain(System.String,System.String)">
+ <summary>
+ Asserts that a string is found within another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that a string starts with another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ <param name="message">The message to display in case of failure</param>
+ <param name="args">Arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String,System.String)">
+ <summary>
+ Asserts that a string starts with another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.StartsWith(System.String,System.String)">
+ <summary>
+ Asserts that a string starts with another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that a string does not start with another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ <param name="message">The message to display in case of failure</param>
+ <param name="args">Arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String,System.String)">
+ <summary>
+ Asserts that a string does not start with another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.DoesNotStartWith(System.String,System.String)">
+ <summary>
+ Asserts that a string does not start with another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that a string ends with another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ <param name="message">The message to display in case of failure</param>
+ <param name="args">Arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String,System.String)">
+ <summary>
+ Asserts that a string ends with another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.EndsWith(System.String,System.String)">
+ <summary>
+ Asserts that a string ends with another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that a string does not end with another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ <param name="message">The message to display in case of failure</param>
+ <param name="args">Arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String,System.String)">
+ <summary>
+ Asserts that a string does not end with another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.DoesNotEndWith(System.String,System.String)">
+ <summary>
+ Asserts that a string does not end with another string.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The string to be examined</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that two strings are equal, without regard to case.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The actual string</param>
+ <param name="message">The message to display in case of failure</param>
+ <param name="args">Arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String,System.String)">
+ <summary>
+ Asserts that two strings are equal, without regard to case.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The actual string</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.AreEqualIgnoringCase(System.String,System.String)">
+ <summary>
+ Asserts that two strings are equal, without regard to case.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The actual string</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that two strings are not equal, without regard to case.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The actual string</param>
+ <param name="message">The message to display in case of failure</param>
+ <param name="args">Arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String,System.String)">
+ <summary>
+ Asserts that two strings are Notequal, without regard to case.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The actual string</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.AreNotEqualIgnoringCase(System.String,System.String)">
+ <summary>
+ Asserts that two strings are not equal, without regard to case.
+ </summary>
+ <param name="expected">The expected string</param>
+ <param name="actual">The actual string</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that a string matches an expected regular expression pattern.
+ </summary>
+ <param name="pattern">The regex pattern to be matched</param>
+ <param name="actual">The actual string</param>
+ <param name="message">The message to display in case of failure</param>
+ <param name="args">Arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String,System.String)">
+ <summary>
+ Asserts that a string matches an expected regular expression pattern.
+ </summary>
+ <param name="pattern">The regex pattern to be matched</param>
+ <param name="actual">The actual string</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.IsMatch(System.String,System.String)">
+ <summary>
+ Asserts that a string matches an expected regular expression pattern.
+ </summary>
+ <param name="pattern">The regex pattern to be matched</param>
+ <param name="actual">The actual string</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String,System.Object[])">
+ <summary>
+ Asserts that a string does not match an expected regular expression pattern.
+ </summary>
+ <param name="pattern">The regex pattern to be used</param>
+ <param name="actual">The actual string</param>
+ <param name="message">The message to display in case of failure</param>
+ <param name="args">Arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String,System.String)">
+ <summary>
+ Asserts that a string does not match an expected regular expression pattern.
+ </summary>
+ <param name="pattern">The regex pattern to be used</param>
+ <param name="actual">The actual string</param>
+ <param name="message">The message to display in case of failure</param>
+ </member>
+ <member name="M:NUnit.Framework.StringAssert.DoesNotMatch(System.String,System.String)">
+ <summary>
+ Asserts that a string does not match an expected regular expression pattern.
+ </summary>
+ <param name="pattern">The regex pattern to be used</param>
+ <param name="actual">The actual string</param>
+ </member>
+ <member name="T:NUnit.Framework.TestCaseData">
+ <summary>
+ The TestCaseData class represents a set of arguments
+ and other parameter info to be used for a parameterized
+ test case. It provides a number of instance modifiers
+ for use in initializing the test case.
+
+ Note: Instance modifiers are getters that return
+ the same instance after modifying it's state.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestCaseData.arguments">
+ <summary>
+ The argument list to be provided to the test
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestCaseData.result">
+ <summary>
+ The expected result to be returned
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestCaseData.expectedExceptionType">
+ <summary>
+ The expected exception Type
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestCaseData.expectedExceptionName">
+ <summary>
+ The FullName of the expected exception
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestCaseData.testName">
+ <summary>
+ The name to be used for the test
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestCaseData.description">
+ <summary>
+ The description of the test
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestCaseData.properties">
+ <summary>
+ A dictionary of properties, used to add information
+ to tests without requiring the class to change.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestCaseData.isIgnored">
+ <summary>
+ If true, indicates that the test case is to be ignored
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestCaseData.ignoreReason">
+ <summary>
+ The reason for ignoring a test case
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object[])">
+ <summary>
+ Initializes a new instance of the <see cref="T:TestCaseData"/> class.
+ </summary>
+ <param name="args">The arguments.</param>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:TestCaseData"/> class.
+ </summary>
+ <param name="arg">The argument.</param>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:TestCaseData"/> class.
+ </summary>
+ <param name="arg1">The first argument.</param>
+ <param name="arg2">The second argument.</param>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.#ctor(System.Object,System.Object,System.Object)">
+ <summary>
+ Initializes a new instance of the <see cref="T:TestCaseData"/> class.
+ </summary>
+ <param name="arg1">The first argument.</param>
+ <param name="arg2">The second argument.</param>
+ <param name="arg3">The third argument.</param>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.Returns(System.Object)">
+ <summary>
+ Sets the expected result for the test
+ </summary>
+ <param name="result">The expected result</param>
+ <returns>A modified TestCaseData</returns>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.Throws(System.Type)">
+ <summary>
+ Sets the expected exception type for the test
+ </summary>
+ <param name="exceptionType">Type of the expected exception.</param>
+ <returns>The modified TestCaseData instance</returns>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.Throws(System.String)">
+ <summary>
+ Sets the expected exception type for the test
+ </summary>
+ <param name="exceptionName">FullName of the expected exception.</param>
+ <returns>The modified TestCaseData instance</returns>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.SetName(System.String)">
+ <summary>
+ Sets the name of the test case
+ </summary>
+ <returns>The modified TestCaseData instance</returns>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.SetDescription(System.String)">
+ <summary>
+ Sets the description for the test case
+ being constructed.
+ </summary>
+ <param name="description">The description.</param>
+ <returns>The modified TestCaseData instance.</returns>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.SetCategory(System.String)">
+ <summary>
+ Applies a category to the test
+ </summary>
+ <param name="category"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.String)">
+ <summary>
+ Applies a named property to the test
+ </summary>
+ <param name="propName"></param>
+ <param name="propValue"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Int32)">
+ <summary>
+ Applies a named property to the test
+ </summary>
+ <param name="propName"></param>
+ <param name="propValue"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.SetProperty(System.String,System.Double)">
+ <summary>
+ Applies a named property to the test
+ </summary>
+ <param name="propName"></param>
+ <param name="propValue"></param>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.Ignore">
+ <summary>
+ Ignores this TestCase.
+ </summary>
+ <returns></returns>
+ </member>
+ <member name="M:NUnit.Framework.TestCaseData.Ignore(System.String)">
+ <summary>
+ Ignores this TestCase, specifying the reason.
+ </summary>
+ <param name="reason">The reason.</param>
+ <returns></returns>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseData.Arguments">
+ <summary>
+ Gets the argument list to be provided to the test
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseData.Result">
+ <summary>
+ Gets the expected result
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseData.ExpectedException">
+ <summary>
+ Gets the expected exception Type
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseData.ExpectedExceptionName">
+ <summary>
+ Gets the FullName of the expected exception
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseData.TestName">
+ <summary>
+ Gets the name to be used for the test
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseData.Description">
+ <summary>
+ Gets the description of the test
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseData.Ignored">
+ <summary>
+ Gets a value indicating whether this <see cref="T:NUnit.Framework.ITestCaseData"/> is ignored.
+ </summary>
+ <value><c>true</c> if ignored; otherwise, <c>false</c>.</value>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseData.IgnoreReason">
+ <summary>
+ Gets the ignore reason.
+ </summary>
+ <value>The ignore reason.</value>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseData.Categories">
+ <summary>
+ Gets a list of categories associated with this test.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestCaseData.Properties">
+ <summary>
+ Gets the property dictionary for this test
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TestContext">
+ <summary>
+ Provide the context information of the current test
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.TestContext.#ctor(System.Collections.IDictionary)">
+ <summary>
+ Constructs a TestContext using the provided context dictionary
+ </summary>
+ <param name="context">A context dictionary</param>
+ </member>
+ <member name="P:NUnit.Framework.TestContext.CurrentContext">
+ <summary>
+ Get the current test context. This is created
+ as needed. The user may save the context for
+ use within a test, but it should not be used
+ outside the test for which it is created.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestContext.Test">
+ <summary>
+ Gets a TestAdapter representing the currently executing test in this context.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestContext.Result">
+ <summary>
+ Gets a ResultAdapter representing the current result for the test
+ executing in this context.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestContext.TestDirectory">
+ <summary>
+ Gets the current directory for this TestContext
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TestContext.TestAdapter">
+ <summary>
+ TestAdapter adapts a Test for consumption by
+ the user test code.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.TestContext.TestAdapter.#ctor(System.Collections.IDictionary)">
+ <summary>
+ Constructs a TestAdapter for this context
+ </summary>
+ <param name="context">The context dictionary</param>
+ </member>
+ <member name="P:NUnit.Framework.TestContext.TestAdapter.Name">
+ <summary>
+ The name of the test.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestContext.TestAdapter.FullName">
+ <summary>
+ The FullName of the test
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestContext.TestAdapter.Properties">
+ <summary>
+ The properties of the test.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TestContext.ResultAdapter">
+ <summary>
+ ResultAdapter adapts a TestResult for consumption by
+ the user test code.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.TestContext.ResultAdapter.#ctor(System.Collections.IDictionary)">
+ <summary>
+ Construct a ResultAdapter for a context
+ </summary>
+ <param name="context">The context holding the result</param>
+ </member>
+ <member name="P:NUnit.Framework.TestContext.ResultAdapter.State">
+ <summary>
+ The TestState of current test. This maps to the ResultState
+ used in nunit.core and is subject to change in the future.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.TestContext.ResultAdapter.Status">
+ <summary>
+ The TestStatus of current test. This enum will be used
+ in future versions of NUnit and so is to be preferred
+ to the TestState value.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TestState">
+ <summary>
+ The ResultState enum indicates the result of running a test
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestState.Inconclusive">
+ <summary>
+ The result is inconclusive
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestState.NotRunnable">
+ <summary>
+ The test was not runnable.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestState.Skipped">
+ <summary>
+ The test has been skipped.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestState.Ignored">
+ <summary>
+ The test has been ignored.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestState.Success">
+ <summary>
+ The test succeeded
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestState.Failure">
+ <summary>
+ The test failed
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestState.Error">
+ <summary>
+ The test encountered an unexpected exception
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestState.Cancelled">
+ <summary>
+ The test was cancelled by the user
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TestStatus">
+ <summary>
+ The TestStatus enum indicates the result of running a test
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestStatus.Inconclusive">
+ <summary>
+ The test was inconclusive
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestStatus.Skipped">
+ <summary>
+ The test has skipped
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestStatus.Passed">
+ <summary>
+ The test succeeded
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TestStatus.Failed">
+ <summary>
+ The test failed
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Text">
+ <summary>
+ Helper class with static methods used to supply constraints
+ that operate on strings.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Text.Contains(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value contains the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Text.DoesNotContain(System.String)">
+ <summary>
+ Returns a constraint that fails if the actual
+ value contains the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Text.StartsWith(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value starts with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Text.DoesNotStartWith(System.String)">
+ <summary>
+ Returns a constraint that fails if the actual
+ value starts with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Text.EndsWith(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value ends with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Text.DoesNotEndWith(System.String)">
+ <summary>
+ Returns a constraint that fails if the actual
+ value ends with the substring supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Text.Matches(System.String)">
+ <summary>
+ Returns a constraint that succeeds if the actual
+ value matches the Regex pattern supplied as an argument.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Text.DoesNotMatch(System.String)">
+ <summary>
+ Returns a constraint that fails if the actual
+ value matches the pattern supplied as an argument.
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Text.All">
+ <summary>
+ Returns a ConstraintExpression, which will apply
+ the following constraint to all members of a collection,
+ succeeding if all of them succeed.
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.TextMessageWriter">
+ <summary>
+ TextMessageWriter writes constraint descriptions and messages
+ in displayable form as a text stream. It tailors the display
+ of individual message components to form the standard message
+ format of NUnit assertion failure messages.
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Expected">
+ <summary>
+ Prefix used for the expected value line of a message
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TextMessageWriter.Pfx_Actual">
+ <summary>
+ Prefix used for the actual value line of a message
+ </summary>
+ </member>
+ <member name="F:NUnit.Framework.TextMessageWriter.PrefixLength">
+ <summary>
+ Length of a message prefix
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.#ctor">
+ <summary>
+ Construct a TextMessageWriter
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.#ctor(System.String,System.Object[])">
+ <summary>
+ Construct a TextMessageWriter, specifying a user message
+ and optional formatting arguments.
+ </summary>
+ <param name="userMessage"></param>
+ <param name="args"></param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WriteMessageLine(System.Int32,System.String,System.Object[])">
+ <summary>
+ Method to write single line message with optional args, usually
+ written to precede the general failure message, at a givel
+ indentation level.
+ </summary>
+ <param name="level">The indentation level of the message</param>
+ <param name="message">The message to be written</param>
+ <param name="args">Any arguments used in formatting the message</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Display Expected and Actual lines for a constraint. This
+ is called by MessageWriter's default implementation of
+ WriteMessageTo and provides the generic two-line display.
+ </summary>
+ <param name="constraint">The constraint that failed</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object)">
+ <summary>
+ Display Expected and Actual lines for given values. This
+ method may be called by constraints that need more control over
+ the display of actual and expected values than is provided
+ by the default implementation.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value causing the failure</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.DisplayDifferences(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance)">
+ <summary>
+ Display Expected and Actual lines for given values, including
+ a tolerance value on the expected line.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="actual">The actual value causing the failure</param>
+ <param name="tolerance">The tolerance within which the test was made</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.DisplayStringDifferences(System.String,System.String,System.Int32,System.Boolean,System.Boolean)">
+ <summary>
+ Display the expected and actual string values on separate lines.
+ If the mismatch parameter is >=0, an additional line is displayed
+ line containing a caret that points to the mismatch point.
+ </summary>
+ <param name="expected">The expected string value</param>
+ <param name="actual">The actual string value</param>
+ <param name="mismatch">The point at which the strings don't match or -1</param>
+ <param name="ignoreCase">If true, case is ignored in string comparisons</param>
+ <param name="clipping">If true, clip the strings to fit the max line length</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WriteConnector(System.String)">
+ <summary>
+ Writes the text for a connector.
+ </summary>
+ <param name="connector">The connector.</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WritePredicate(System.String)">
+ <summary>
+ Writes the text for a predicate.
+ </summary>
+ <param name="predicate">The predicate.</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WriteModifier(System.String)">
+ <summary>
+ Write the text for a modifier.
+ </summary>
+ <param name="modifier">The modifier.</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedValue(System.Object)">
+ <summary>
+ Writes the text for an expected value.
+ </summary>
+ <param name="expected">The expected value.</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WriteActualValue(System.Object)">
+ <summary>
+ Writes the text for an actual value.
+ </summary>
+ <param name="actual">The actual value.</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WriteValue(System.Object)">
+ <summary>
+ Writes the text for a generalized value.
+ </summary>
+ <param name="val">The value.</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WriteCollectionElements(System.Collections.ICollection,System.Int32,System.Int32)">
+ <summary>
+ Writes the text for a collection value,
+ starting at a particular point, to a max length
+ </summary>
+ <param name="collection">The collection containing elements to write.</param>
+ <param name="start">The starting point of the elements to write</param>
+ <param name="max">The maximum number of elements to write</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Write the generic 'Expected' line for a constraint
+ </summary>
+ <param name="constraint">The constraint that failed</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object)">
+ <summary>
+ Write the generic 'Expected' line for a given value
+ </summary>
+ <param name="expected">The expected value</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WriteExpectedLine(System.Object,NUnit.Framework.Constraints.Tolerance)">
+ <summary>
+ Write the generic 'Expected' line for a given value
+ and tolerance.
+ </summary>
+ <param name="expected">The expected value</param>
+ <param name="tolerance">The tolerance within which the test was made</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(NUnit.Framework.Constraints.Constraint)">
+ <summary>
+ Write the generic 'Actual' line for a constraint
+ </summary>
+ <param name="constraint">The constraint for which the actual value is to be written</param>
+ </member>
+ <member name="M:NUnit.Framework.TextMessageWriter.WriteActualLine(System.Object)">
+ <summary>
+ Write the generic 'Actual' line for a given value
+ </summary>
+ <param name="actual">The actual value causing a failure</param>
+ </member>
+ <member name="P:NUnit.Framework.TextMessageWriter.MaxLineLength">
+ <summary>
+ Gets or sets the maximum line length for this writer
+ </summary>
+ </member>
+ <member name="T:NUnit.Framework.Throws">
+ <summary>
+ Helper class with properties and methods that supply
+ constraints that operate on exceptions.
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Throws.TypeOf(System.Type)">
+ <summary>
+ Creates a constraint specifying the exact type of exception expected
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Throws.TypeOf``1">
+ <summary>
+ Creates a constraint specifying the exact type of exception expected
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Throws.InstanceOf(System.Type)">
+ <summary>
+ Creates a constraint specifying the type of exception expected
+ </summary>
+ </member>
+ <member name="M:NUnit.Framework.Throws.InstanceOf``1">
+ <summary>
+ Creates a constraint specifying the type of exception expected
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Throws.Exception">
+ <summary>
+ Creates a constraint specifying an expected exception
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Throws.InnerException">
+ <summary>
+ Creates a constraint specifying an exception with a given InnerException
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Throws.TargetInvocationException">
+ <summary>
+ Creates a constraint specifying an expected TargetInvocationException
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Throws.ArgumentException">
+ <summary>
+ Creates a constraint specifying an expected TargetInvocationException
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Throws.InvalidOperationException">
+ <summary>
+ Creates a constraint specifying an expected TargetInvocationException
+ </summary>
+ </member>
+ <member name="P:NUnit.Framework.Throws.Nothing">
+ <summary>
+ Creates a constraint specifying that no exception is thrown
+ </summary>
+ </member>
+ </members>
+</doc>
diff --git a/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.mocks.dll b/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.mocks.dll Binary files differnew file mode 100755 index 0000000..6ee2c1c --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/lib/nunit.mocks.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/lib/pnunit.framework.dll b/SendGrid/packages/NUnit.2.5.10.11092/lib/pnunit.framework.dll Binary files differnew file mode 100755 index 0000000..6c105d7 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/lib/pnunit.framework.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/license.txt b/SendGrid/packages/NUnit.2.5.10.11092/license.txt new file mode 100755 index 0000000..ab91df4 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/license.txt @@ -0,0 +1,15 @@ +Copyright © 2002-2008 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-2008 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.
diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.VisualState.xml b/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.VisualState.xml new file mode 100755 index 0000000..603cda7 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.VisualState.xml @@ -0,0 +1,124 @@ +<?xml version="1.0" encoding="utf-8"?>
+<VisualState xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ShowCheckBoxes="false">
+ <TopNode>[0-1000]D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\NUnitTests.nunit</TopNode>
+ <SelectedNode>[0-1000]D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\NUnitTests.nunit</SelectedNode>
+ <ExcludeCategories>false</ExcludeCategories>
+ <Nodes>
+ <Node UniqueName="[0-1000]D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\NUnitTests.nunit" Expanded="true" />
+ <Node UniqueName="[0-2832]D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.framework.tests.dll" Expanded="true" />
+ <Node UniqueName="[0-2833]NUnit" Expanded="true" />
+ <Node UniqueName="[0-2834]NUnit.Framework" Expanded="true" />
+ <Node UniqueName="[0-2835]NUnit.Framework.Constraints" Expanded="true" />
+ <Node UniqueName="[0-1001]NUnit.Framework.Constraints.AfterConstraintTest" Expanded="true" />
+ <Node UniqueName="[0-1023]NUnit.Framework.Constraints.AndTest" Expanded="true" />
+ <Node UniqueName="[0-1914]NUnit.Framework.Constraints.AssignableFromTest" Expanded="true" />
+ <Node UniqueName="[0-1924]NUnit.Framework.Constraints.AssignableToTest" Expanded="true" />
+ <Node UniqueName="[0-1934]NUnit.Framework.Constraints.AttributeExistsConstraintTest" Expanded="true" />
+ <Node UniqueName="[0-1697]NUnit.Framework.Constraints.BinarySerializableTest" Expanded="true" />
+ <Node UniqueName="[0-1144]NUnit.Framework.Constraints.ComparerTests" Expanded="true" />
+ <Node UniqueName="[0-1271]NUnit.Framework.Constraints.EmptyConstraintTest" Expanded="true" />
+ <Node UniqueName="[0-1806]NUnit.Framework.Constraints.EndsWithTest" Expanded="true" />
+ <Node UniqueName="[0-1826]NUnit.Framework.Constraints.EndsWithTestIgnoringCase" Expanded="true" />
+ <Node UniqueName="[0-1300]NUnit.Framework.Constraints.EqualConstraintTest" Expanded="true" />
+ <Node UniqueName="[0-1893]NUnit.Framework.Constraints.ExactTypeTest" Expanded="true" />
+ <Node UniqueName="[0-1060]NUnit.Framework.Constraints.FalseConstraintTest" Expanded="true" />
+ <Node UniqueName="[0-1196]NUnit.Framework.Constraints.GreaterThanOrEqualTest" Expanded="true" />
+ <Node UniqueName="[0-1176]NUnit.Framework.Constraints.GreaterThanTest" Expanded="true" />
+ <Node UniqueName="[0-1904]NUnit.Framework.Constraints.InstanceOfTypeTest" Expanded="true" />
+ <Node UniqueName="[0-1234]NUnit.Framework.Constraints.LessThanOrEqualTest" Expanded="true" />
+ <Node UniqueName="[0-1214]NUnit.Framework.Constraints.LessThanTest" Expanded="true" />
+ <Node UniqueName="[0-1398]NUnit.Framework.Constraints.MsgUtilTests" Expanded="true" />
+ <Node UniqueName="[0-1076]NUnit.Framework.Constraints.NaNConstraintTest" Expanded="true" />
+ <Node UniqueName="[0-1429]NUnit.Framework.Constraints.NotTest" Expanded="true" />
+ <Node UniqueName="[0-1035]NUnit.Framework.Constraints.NullConstraintTest" Expanded="true" />
+ <Node UniqueName="[0-1288]NUnit.Framework.Constraints.NullOrEmptyStringConstraintTest" Expanded="true" />
+ <Node UniqueName="[0-1443]NUnit.Framework.Constraints.NumericsTest" Expanded="true" />
+ <Node UniqueName="[0-1477]NUnit.Framework.Constraints.OrTest" Expanded="true" />
+ <Node UniqueName="[0-1643]NUnit.Framework.Constraints.PropertyExistsTest" Expanded="true" />
+ <Node UniqueName="[0-1660]NUnit.Framework.Constraints.PropertyTest" Expanded="true" />
+ <Node UniqueName="[0-1252]NUnit.Framework.Constraints.RangeConstraintTest" Expanded="true" />
+ <Node UniqueName="[0-1677]NUnit.Framework.Constraints.ReusableConstraintTests" Expanded="true" />
+ <Node UniqueName="[0-1684]NUnit.Framework.Constraints.SameAsTest" Expanded="true" />
+ <Node UniqueName="[0-1615]NUnit.Framework.Constraints.SamePathOrUnderTest_Linux" Expanded="true" />
+ <Node UniqueName="[0-1592]NUnit.Framework.Constraints.SamePathOrUnderTest_Windows" Expanded="true" />
+ <Node UniqueName="[0-1507]NUnit.Framework.Constraints.SamePathTest_Linux" Expanded="true" />
+ <Node UniqueName="[0-1488]NUnit.Framework.Constraints.SamePathTest_Windows" Expanded="true" />
+ <Node UniqueName="[0-1766]NUnit.Framework.Constraints.StartsWithTest" Expanded="true" />
+ <Node UniqueName="[0-1786]NUnit.Framework.Constraints.StartsWithTestIgnoringCase" Expanded="true" />
+ <Node UniqueName="[0-1559]NUnit.Framework.Constraints.SubPathTest_Linux" Expanded="true" />
+ <Node UniqueName="[0-1529]NUnit.Framework.Constraints.SubPathTest_Windows" Expanded="true" />
+ <Node UniqueName="[0-1728]NUnit.Framework.Constraints.SubstringTest" Expanded="true" />
+ <Node UniqueName="[0-1748]NUnit.Framework.Constraints.SubstringTestIgnoringCase" Expanded="true" />
+ <Node UniqueName="[0-1846]NUnit.Framework.Constraints.ThrowsConstraintTest_ExactType" Expanded="true" />
+ <Node UniqueName="[0-1859]NUnit.Framework.Constraints.ThrowsConstraintTest_InstanceOfType" Expanded="true" />
+ <Node UniqueName="[0-1873]NUnit.Framework.Constraints.ThrowsConstraintTest_WithConstraint" Expanded="true" />
+ <Node UniqueName="[0-1044]NUnit.Framework.Constraints.TrueConstraintTest" Expanded="true" />
+ <Node UniqueName="[0-1711]NUnit.Framework.Constraints.XmlSerializableTest" Expanded="true" />
+ <Node UniqueName="[0-2836]NUnit.Framework.Syntax" Expanded="true" />
+ <Node UniqueName="[0-2093]NUnit.Framework.Syntax.InvalidCodeTests" Expanded="true" />
+ <Node UniqueName="[0-2837]NUnit.Framework.Tests" Expanded="true" />
+ <Node UniqueName="[0-2772]NUnit.Framework.Tests.ValuesAttributeTests" Expanded="true" />
+ <Node UniqueName="[0-3878]D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.core.tests.dll" Expanded="true" />
+ <Node UniqueName="[0-3879]NUnit" Expanded="true" />
+ <Node UniqueName="[0-3880]NUnit.Core" Expanded="true" />
+ <Node UniqueName="[0-3881]NUnit.Core.Tests" Expanded="true" />
+ <Node UniqueName="[0-2919]NUnit.Core.Tests.CategoryAttributeTests" Expanded="true" />
+ <Node UniqueName="[0-2929]NUnit.Core.Tests.CombinatorialTests" Expanded="true" />
+ <Node UniqueName="[0-2998]NUnit.Core.Tests.CultureSettingAndDetectionTests" Expanded="true" />
+ <Node UniqueName="[0-3021]NUnit.Core.Tests.EventQueueTests" Expanded="true" />
+ <Node UniqueName="[0-3882]NUnit.Core.Tests.Generic" Expanded="true" />
+ <Node UniqueName="[0-2838]NUnit.Core.Tests.Generic.DeduceTypeArgsFromArgs<T1,T2>" Expanded="true" />
+ <Node UniqueName="[0-2839]NUnit.Core.Tests.Generic.DeduceTypeArgsFromArgs<Double,Int32>(100.0d,42)" Expanded="true" />
+ <Node UniqueName="[0-2842]NUnit.Core.Tests.Generic.DeduceTypeArgsFromArgs<Int32,Double>(42,100.0d)" Expanded="true" />
+ <Node UniqueName="[0-2845]NUnit.Core.Tests.Generic.SimpleGenericFixture<TList>" Expanded="true" />
+ <Node UniqueName="[0-2850]NUnit.Core.Tests.Generic.SimpleGenericMethods" Expanded="true" />
+ <Node UniqueName="[0-2866]NUnit.Core.Tests.Generic.TypeParameterUsedWithTestMethod<T>" Expanded="true" />
+ <Node UniqueName="[0-2867]NUnit.Core.Tests.Generic.TypeParameterUsedWithTestMethod<Double>" Expanded="true" />
+ <Node UniqueName="[0-3158]NUnit.Core.Tests.PairwiseTest" Expanded="true" />
+ <Node UniqueName="[0-3169]NUnit.Core.Tests.PairwiseTest+LiveTest" Expanded="true" />
+ <Node UniqueName="[0-3178]NUnit.Core.Tests.ParameterizedTestFixture" Expanded="true" />
+ <Node UniqueName="[0-3195]NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources" Expanded="true" />
+ <Node UniqueName="[0-3196]NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42)" Expanded="true" />
+ <Node UniqueName="[0-3188]NUnit.Core.Tests.ParameterizedTestFixtureWithNullArguments" Expanded="true" />
+ <Node UniqueName="[0-3297]NUnit.Core.Tests.RuntimeFrameworkTests" Expanded="true" />
+ <Node UniqueName="[0-3466]NUnit.Core.Tests.TestCaseAttributeTests" Expanded="true" />
+ <Node UniqueName="[0-3536]NUnit.Core.Tests.TestCaseSourceTests" Expanded="true" />
+ <Node UniqueName="[0-3753]NUnit.Core.Tests.TheoryTests" Expanded="true" />
+ <Node UniqueName="[0-3775]NUnit.Core.Tests.TheoryTests+SqrtTests_DisplayResults" Expanded="true" />
+ <Node UniqueName="[0-3817]NUnit.Core.Tests.TypeHelperTests" Expanded="true" />
+ <Node UniqueName="[0-3844]NUnit.Core.Tests.ValueSourceTests" Expanded="true" />
+ <Node UniqueName="[0-4250]D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.util.tests.dll" Expanded="true" />
+ <Node UniqueName="[0-4251]NUnit" Expanded="true" />
+ <Node UniqueName="[0-4252]NUnit.Util" Expanded="true" />
+ <Node UniqueName="[0-4134]NUnit.Util.Tests.ServiceManagerSetUpFixture" Expanded="true" />
+ <Node UniqueName="[0-4110]NUnit.Util.Tests.RuntimeFrameworkSelectorTests" Expanded="true" />
+ <Node UniqueName="[0-4302]D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.mocks.tests.dll" Expanded="true" />
+ <Node UniqueName="[0-4303]NUnit" Expanded="true" />
+ <Node UniqueName="[0-4304]NUnit.Mocks" Expanded="true" />
+ <Node UniqueName="[0-4305]NUnit.Mocks.Tests" Expanded="true" />
+ <Node UniqueName="[0-4361]D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit-console.tests.dll" Expanded="true" />
+ <Node UniqueName="[0-4362]NUnit" Expanded="true" />
+ <Node UniqueName="[0-4363]NUnit.ConsoleRunner" Expanded="true" />
+ <Node UniqueName="[0-4364]NUnit.ConsoleRunner.Tests" Expanded="true" />
+ <Node UniqueName="[0-4345]NUnit.ConsoleRunner.Tests.TestNameParserTests" Expanded="true" />
+ <Node UniqueName="[0-4604]D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.uiexception.tests.dll" Expanded="true" />
+ <Node UniqueName="[0-4605]NUnit" Expanded="true" />
+ <Node UniqueName="[0-4606]NUnit.UiException" Expanded="true" />
+ <Node UniqueName="[0-4607]NUnit.UiException.Tests" Expanded="true" />
+ <Node UniqueName="[0-4608]NUnit.UiException.Tests.CodeFormatters" Expanded="true" />
+ <Node UniqueName="[0-4609]NUnit.UiException.Tests.Controls" Expanded="true" />
+ <Node UniqueName="[0-4610]NUnit.UiException.Tests.StackTraceAnalyzers" Expanded="true" />
+ <Node UniqueName="[0-4665]D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.uikit.tests.dll" Expanded="true" />
+ <Node UniqueName="[0-4666]NUnit" Expanded="true" />
+ <Node UniqueName="[0-4667]NUnit.UiKit" Expanded="true" />
+ <Node UniqueName="[0-4668]NUnit.UiKit.Tests" Expanded="true" />
+ <Node UniqueName="[0-4687]D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit-gui.tests.dll" Expanded="true" />
+ <Node UniqueName="[0-4688]NUnit" Expanded="true" />
+ <Node UniqueName="[0-4689]NUnit.Gui" Expanded="true" />
+ <Node UniqueName="[0-4690]NUnit.Gui.Tests" Expanded="true" />
+ <Node UniqueName="[0-4699]D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.fixtures.tests.dll" Expanded="true" />
+ <Node UniqueName="[0-4700]NUnit" Expanded="true" />
+ <Node UniqueName="[0-4701]NUnit.Fixtures" Expanded="true" />
+ <Node UniqueName="[0-4702]NUnit.Fixtures.Tests" Expanded="true" />
+ </Nodes>
+</VisualState>
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.config new file mode 100755 index 0000000..9487c07 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.config @@ -0,0 +1,85 @@ +<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+<!--
+ This is the configuration file for the NUnitTests.nunit test project. You may
+ need to create a similar configuration file for your own test project.
+ -->
+
+<!--
+ The <NUnit> section is only needed if you want to use a non-default value
+ for any of the settings. It is commented out below. If you are going to use
+ it, you must deifne the NUnit section group and the sections you need.
+
+ The syntax shown here works for most runtimes. If NUnit fails at startup, you
+ can try specifying the name of the assembly containing the NameValueSectionHandler:
+
+ <section name="TestCaseBuilder" type="System.Configuration.NameValueSectionHandler, System" />
+
+ If that fails, try the fully qualified name of the assembly:
+
+ <section name="TestCaseBuilder" type="System.Configuration.NameValueSectionHandler, System,
+ Version=2.0.50727.832, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
+
+ Unfortunately, this last approach makes your config file non-portable across runtimes.
+ -->
+
+<!--
+ <configSections>
+ <sectionGroup name="NUnit">
+ <section name="TestCaseBuilder" type="System.Configuration.NameValueSectionHandler"/>
+ <section name="TestRunner" type="System.Configuration.NameValueSectionHandler"/>
+ </sectionGroup>
+ </configSections>
+ -->
+
+ <appSettings>
+ <!-- User application and configured property settings go here.-->
+ <!-- Example: <add key="settingName" value="settingValue"/> -->
+ <add key="test.setting" value="54321" />
+ </appSettings>
+
+<!-- Sample NUnit section group showing all default values -->
+<!--
+ <NUnit>
+ <TestCaseBuilder>
+ <add key="OldStyleTestCases" value="false" />
+ </TestCaseBuilder>
+ <TestRunner>
+ <add key="ApartmentState" value="MTA" />
+ <add key="ThreadPriority" value="Normal" />
+ <add key="DefaultLogThreshold" value="Info" />
+ </TestRunner>
+ </NUnit>
+-->
+
+ <!--
+ The following <runtime> section allows running nunit tests under
+ .NET 1.0 by redirecting assemblies. The appliesTo attribute
+ causes the section to be ignored except under .NET 1.0.
+ -->
+ <runtime>
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
+ appliesTo="v1.0.3705">
+ <dependentAssembly>
+ <assemblyIdentity name="System" publicKeyToken="b77a5c561934e089" culture="" />
+ <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Data" publicKeyToken="b77a5c561934e089" culture="" />
+ <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Drawing" publicKeyToken="b03f5f7f11d50a3a" culture="" />
+ <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Windows.Forms" publicKeyToken="b77a5c561934e089" culture="" />
+ <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Xml" publicKeyToken="b77a5c561934e089" culture="" />
+ <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
+ </dependentAssembly>
+ </assemblyBinding>
+ </runtime>
+</configuration>
diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.nunit b/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.nunit new file mode 100755 index 0000000..bb80dd6 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/NUnitTests.nunit @@ -0,0 +1,14 @@ +<NUnitProject>
+ <Settings appbase="."/>
+ <Config name="Default" binpath="lib;tests;framework" runtimeFramework="v2.0">
+ <assembly path="tests/nunit.framework.tests.dll" />
+ <assembly path="tests/nunit.core.tests.dll" />
+ <assembly path="tests/nunit.util.tests.dll" />
+ <assembly path="tests/nunit.mocks.tests.dll" />
+ <assembly path="tests/nunit-console.tests.dll" />
+ <assembly path="tests/nunit.uiexception.tests.dll" />
+ <assembly path="tests/nunit.uikit.tests.dll" />
+ <assembly path="tests/nunit-gui.tests.dll" />
+ <assembly path="tests/nunit.fixtures.tests.dll" />
+ </Config>
+</NUnitProject>
diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/TestResult.xml b/SendGrid/packages/NUnit.2.5.10.11092/tools/TestResult.xml new file mode 100755 index 0000000..058d42b --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/TestResult.xml @@ -0,0 +1,5971 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?>
+<!--This file represents the results of running a test suite-->
+<test-results name="D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\NUnitTests.nunit" total="3001" errors="0" failures="0" not-run="2" inconclusive="13" ignored="0" skipped="2" invalid="0" date="2011-04-02" time="20:08:59">
+ <environment nunit-version="2.5.10.11092" clr-version="2.0.50727.4952" os-version="Microsoft Windows NT 6.1.7600.0" platform="Win32NT" cwd="D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release" machine-name="CHARLIE-LAPTOP" user="charlie" user-domain="charlie-laptop" />
+ <culture-info current-culture="en-US" current-uiculture="en-US" />
+ <test-suite type="Project" name="D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\NUnitTests.nunit" executed="True" result="Success" success="True" time="88.847" asserts="0">
+ <results>
+ <test-suite type="Assembly" name="D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.framework.tests.dll" executed="True" result="Success" success="True" time="17.475" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="NUnit" executed="True" result="Success" success="True" time="17.474" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Framework" executed="True" result="Success" success="True" time="17.474" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Constraints" executed="True" result="Success" success="True" time="10.349" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="AfterConstraintTest" executed="True" result="Success" success="True" time="6.316" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.018" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadDelegates" executed="True" result="Success" success="True" time="1.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.FailsWithBadDelegates(NUnit.Framework.Constraints.ActualValueDelegate)" executed="True" result="Success" success="True" time="0.502" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.FailsWithBadDelegates(NUnit.Framework.Constraints.ActualValueDelegate)" executed="True" result="Success" success="True" time="0.500" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="1.507" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.FailsWithBadValues(False)" executed="True" result="Success" success="True" time="0.500" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.FailsWithBadValues(0)" executed="True" result="Success" success="True" time="0.500" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.FailsWithBadValues(null)" executed="True" result="Success" success="True" time="0.500" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="1.509" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.ProvidesProperFailureMessage(False,"False")" executed="True" result="Success" success="True" time="0.501" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.ProvidesProperFailureMessage(0,"0")" executed="True" result="Success" success="True" time="0.500" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.ProvidesProperFailureMessage(null,"null")" executed="True" result="Success" success="True" time="0.500" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.SimpleTest" executed="True" result="Success" success="True" time="0.602" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.SimpleTestUsingReference" executed="True" result="Success" success="True" time="0.603" asserts="1" />
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodDelegates" executed="True" result="Success" success="True" time="0.502" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.SucceedsWithGoodDelegates(NUnit.Framework.Constraints.ActualValueDelegate)" executed="True" result="Success" success="True" time="0.501" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.502" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.SucceedsWithGoodValues(True)" executed="True" result="Success" success="True" time="0.500" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.ThatOverload_DoesNotAcceptNegativeDelayValues" executed="True" result="Success" success="True" time="0.003" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.AfterConstraintTest.ThatOverload_ZeroDelayIsAllowed" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AllItemsTests" executed="True" result="Success" success="True" time="0.039" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AllItemsTests.AllItemsAreInRange" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AllItemsTests.AllItemsAreInRange_UsingComparisonOfT" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AllItemsTests.AllItemsAreInRange_UsingIComparer" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AllItemsTests.AllItemsAreInRange_UsingIComparerOfT" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AllItemsTests.AllItemsAreInRangeFailureMessage" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.AllItemsTests.AllItemsAreInstancesOfType" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AllItemsTests.AllItemsAreInstancesOfTypeFailureMessage" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.AllItemsTests.AllItemsAreNotNull" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AllItemsTests.AllItemsAreNotNullFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AndTest" executed="True" result="Success" success="True" time="0.035" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AndTest.CanCombineTestsWithAndOperator" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AndTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AndTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AndTest.FailsWithBadValues(37)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AndTest.FailsWithBadValues(53)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AndTest.ProvidesProperFailureMessage(37,"37")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AndTest.ProvidesProperFailureMessage(53,"53")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AndTest.SucceedsWithGoodValues(42)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssignableFromTest" executed="True" result="Success" success="True" time="0.018" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AssignableFromTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AssignableFromTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AssignableFromTest.FailsWithBadValues(NUnit.Framework.Constraints.D2)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AssignableFromTest.ProvidesProperFailureMessage(NUnit.Framework.Constraints.D2,"<NUnit.Framework.Constraints.D2>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AssignableFromTest.SucceedsWithGoodValues(NUnit.Framework.Constraints.D1)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AssignableFromTest.SucceedsWithGoodValues(NUnit.Framework.Constraints.B)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssignableToTest" executed="True" result="Success" success="True" time="0.018" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AssignableToTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AssignableToTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AssignableToTest.FailsWithBadValues(NUnit.Framework.Constraints.B)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AssignableToTest.ProvidesProperFailureMessage(NUnit.Framework.Constraints.B,"<NUnit.Framework.Constraints.B>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AssignableToTest.SucceedsWithGoodValues(NUnit.Framework.Constraints.D1)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AssignableToTest.SucceedsWithGoodValues(NUnit.Framework.Constraints.D2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AttributeExistsConstraintTest" executed="True" result="Success" success="True" time="0.034" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AttributeExistsConstraintTest.AttributeExistsOnMethodInfo" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AttributeExistsConstraintTest.AttributeTestPropertyValueOnMethodInfo" description="my description" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AttributeExistsConstraintTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.AttributeExistsConstraintTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AttributeExistsConstraintTest.FailsWithBadValues(NUnit.Framework.Constraints.D2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.AttributeExistsConstraintTest.NonAttributeThrowsException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AttributeExistsConstraintTest.ProvidesProperFailureMessage(NUnit.Framework.Constraints.D2,"<NUnit.Framework.Constraints.D2>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.AttributeExistsConstraintTest.SucceedsWithGoodValues(NUnit.Framework.Constraints.AttributeExistsConstraintTest)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="BinarySerializableTest" executed="True" result="Success" success="True" time="0.029" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.BinarySerializableTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.BinarySerializableTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.BinarySerializableTest.FailsWithBadValues(NUnit.Framework.Constraints.InternalClass)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="InvalidDataThrowsArgumentException" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.BinarySerializableTest.InvalidDataThrowsArgumentException(null)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.BinarySerializableTest.ProvidesProperFailureMessage(NUnit.Framework.Constraints.InternalClass,"<InternalClass>")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.BinarySerializableTest.SucceedsWithGoodValues(1)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.BinarySerializableTest.SucceedsWithGoodValues("a")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.BinarySerializableTest.SucceedsWithGoodValues(System.Collections.ArrayList)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.BinarySerializableTest.SucceedsWithGoodValues(NUnit.Framework.Constraints.InternalWithSerializableAttributeClass)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionContainsTests" executed="True" result="Success" success="True" time="0.041" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.CollectionContainsTests.CanTestContentsOfArray" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionContainsTests.CanTestContentsOfArrayList" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionContainsTests.CanTestContentsOfCollectionNotImplementingIList" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionContainsTests.CanTestContentsOfSortedList" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.CollectionContainsTests.IgnoreCaseIsHonored" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionContainsTests.UsesProvidedComparerOfT" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.CollectionContainsTests.UsesProvidedComparisonOfT" executed="True" result="Success" success="True" time="0.006" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.CollectionContainsTests.UsesProvidedEqualityComparer" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.CollectionContainsTests.UsesProvidedEqualityComparerOfT" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.CollectionContainsTests.UsesProvidedIComparer" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionEquivalentTests" executed="True" result="Success" success="True" time="0.022" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.CollectionEquivalentTests.EqualCollectionsAreEquivalent" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionEquivalentTests.EquivalentFailsWithDuplicateElementInActual" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionEquivalentTests.EquivalentFailsWithDuplicateElementInExpected" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionEquivalentTests.EquivalentHandlesNull" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionEquivalentTests.EquivalentHonorsIgnoreCase" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionEquivalentTests.EquivalentIgnoresOrder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionEquivalentTests.WorksWithCollectionsOfArrays" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionOrderedTests" executed="True" result="Success" success="True" time="0.049" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrdered" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrdered_2" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrdered_Allows_adjacent_equal_values" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrdered_AtLeastOneArgMustImplementIComparable" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrdered_Fails" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrdered_Handles_custom_comparison" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrdered_Handles_custom_comparison2" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrdered_Handles_null" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrdered_TypesMustBeComparable" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrderedBy" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrderedBy_Comparer" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrderedBy_Handles_heterogeneous_classes_as_long_as_the_property_is_of_same_type" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrderedDescending" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.IsOrderedDescending_2" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.UsesProvidedComparerOfT" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.CollectionOrderedTests.UsesProvidedComparisonOfT" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ComparerTests" executed="True" result="Success" success="True" time="0.071" asserts="0">
+ <results>
+ <test-suite type="ParameterizedTest" name="EqualItems" executed="True" result="Success" success="True" time="0.030" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.EqualItems(4.0d,4)" executed="True" result="Success" success="True" time="0.004" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.EqualItems(4.0d,4.0f)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.EqualItems(null,null)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.EqualItems(4,4)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.EqualItems(4.0d,4.0d)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.EqualItems(4.0f,4.0f)" executed="True" result="Success" success="True" time="0.003" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.EqualItems(4,4.0d)" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.EqualItems(4,4.0f)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.EqualItems(4.0f,4)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.EqualItems(4.0f,4.0d)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.EqualItems(null,null)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SpecialFloatingPointValues" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.SpecialFloatingPointValues(double.NaN)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.SpecialFloatingPointValues(float.NegativeInfinity)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.SpecialFloatingPointValues(float.NaN)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.SpecialFloatingPointValues(double.PositiveInfinity)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.SpecialFloatingPointValues(double.NegativeInfinity)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.SpecialFloatingPointValues(float.PositiveInfinity)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="UnequalItems" executed="True" result="Success" success="True" time="0.022" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.UnequalItems(4,null)" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.UnequalItems(4,2)" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.UnequalItems(4,null)" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.UnequalItems(4.0d,2.0d)" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.UnequalItems(4.0f,2.0f)" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.UnequalItems(4.0f,2.0d)" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.UnequalItems(4,2.0d)" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.UnequalItems(4,2.0f)" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.UnequalItems(4.0d,2)" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.UnequalItems(4.0d,2.0f)" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Framework.Constraints.ComparerTests.UnequalItems(4.0f,2)" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EmptyConstraintTest" executed="True" result="Success" success="True" time="0.031" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EmptyConstraintTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EmptyConstraintTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EmptyConstraintTest.FailsWithBadValues("Hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EmptyConstraintTest.FailsWithBadValues(System.Object[])" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="InvalidDataThrowsArgumentException" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EmptyConstraintTest.InvalidDataThrowsArgumentException(null)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.EmptyConstraintTest.InvalidDataThrowsArgumentException(5)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EmptyConstraintTest.ProvidesProperFailureMessage("Hello","\"Hello\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EmptyConstraintTest.ProvidesProperFailureMessage(System.Object[],"< 1, 2, 3 >")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EmptyConstraintTest.SucceedsWithGoodValues("")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EmptyConstraintTest.SucceedsWithGoodValues(System.Object[])" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EmptyConstraintTest.SucceedsWithGoodValues(System.Collections.ArrayList)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EmptyConstraintTest.SucceedsWithGoodValues(System.Collections.Generic.List`1[System.Int32])" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EndsWithTest" executed="True" result="Success" success="True" time="0.039" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.014" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.FailsWithBadValues("goodbye")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.FailsWithBadValues("What the hell?")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.FailsWithBadValues("hello there")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.FailsWithBadValues("say hello to fred")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.FailsWithBadValues("")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.FailsWithBadValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.ProvidesProperFailureMessage("goodbye","\"goodbye\"")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.ProvidesProperFailureMessage("What the hell?","\"What the hell?\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.ProvidesProperFailureMessage("hello there","\"hello there\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.ProvidesProperFailureMessage("say hello to fred","\"say hello to fred\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.ProvidesProperFailureMessage("","<string.Empty>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.ProvidesProperFailureMessage(null,"null")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.SucceedsWithGoodValues("hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTest.SucceedsWithGoodValues("I said hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EndsWithTestIgnoringCase" executed="True" result="Success" success="True" time="0.040" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.FailsWithBadValues("goodbye")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.FailsWithBadValues("What the hell?")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.FailsWithBadValues("hello there")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.FailsWithBadValues("say hello to fred")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.FailsWithBadValues("")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.FailsWithBadValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.014" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.ProvidesProperFailureMessage("goodbye","\"goodbye\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.ProvidesProperFailureMessage("What the hell?","\"What the hell?\"")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.ProvidesProperFailureMessage("hello there","\"hello there\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.ProvidesProperFailureMessage("say hello to fred","\"say hello to fred\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.ProvidesProperFailureMessage("","<string.Empty>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.ProvidesProperFailureMessage(null,"null")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.SucceedsWithGoodValues("HELLO")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EndsWithTestIgnoringCase.SucceedsWithGoodValues("I said Hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EqualConstraintTest" executed="True" result="Success" success="True" time="0.206" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDates" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDatesWithinDays" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDatesWithinHours" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDatesWithinMilliseconds" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDatesWithinMinutes" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDatesWithinSeconds" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDatesWithinTicks" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDatesWithinTimeSpan" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="CanMatchDoublesWithRelativeTolerance" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDoublesWithRelativeTolerance(10000.0d)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDoublesWithRelativeTolerance(9500.0d)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDoublesWithRelativeTolerance(10500.0d)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanMatchDoublesWithUlpTolerance" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDoublesWithUlpTolerance(2E+16.0d)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchDoublesWithUlpTolerance(2E+16.0d)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanMatchSinglesWithRelativeTolerance" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchSinglesWithRelativeTolerance(10000.0f)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchSinglesWithRelativeTolerance(10500.0f)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchSinglesWithRelativeTolerance(9500.0f)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanMatchSinglesWithUlpTolerance" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchSinglesWithUlpTolerance(2E+07.0f)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchSinglesWithUlpTolerance(2E+07.0f)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanMatchSpecialFloatingPointValues" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchSpecialFloatingPointValues(double.PositiveInfinity)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchSpecialFloatingPointValues(float.NegativeInfinity)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchSpecialFloatingPointValues(float.PositiveInfinity)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchSpecialFloatingPointValues(double.NaN)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchSpecialFloatingPointValues(double.NegativeInfinity)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchSpecialFloatingPointValues(float.NaN)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.CanMatchTimeSpanWithinMinutes" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfDaysPrecedesWithin" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfHoursPrecedesWithin" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfMillisecondsPrecedesWithin" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfMinutesPrecedesWithin" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfPercentPrecedesWithin" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfSecondsPrecedesWithin" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfTicksPrecedesWithin" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfUlpsIsUsedOnDecimal" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-suite type="ParameterizedTest" name="ErrorIfUlpsIsUsedOnIntegralType" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfUlpsIsUsedOnIntegralType(1000,1010)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfUlpsIsUsedOnIntegralType(1000UL,1010UL)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfUlpsIsUsedOnIntegralType(1000,1010)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfUlpsIsUsedOnIntegralType(1000L,1010L)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorIfUlpsPrecedesWithin" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorWithPercentAndUlpsToleranceModes" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ErrorWithUlpsAndPercentToleranceModes" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-suite type="ParameterizedTest" name="FailsOnDoublesOutsideOfRelativeTolerance" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsOnDoublesOutsideOfRelativeTolerance(11500.0d)" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsOnDoublesOutsideOfRelativeTolerance(8500.0d)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="FailsOnDoublesOutsideOfUlpTolerance" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsOnDoublesOutsideOfUlpTolerance(2E+16.0d)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsOnDoublesOutsideOfUlpTolerance(2E+16.0d)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="FailsOnSinglesOutsideOfRelativeTolerance" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsOnSinglesOutsideOfRelativeTolerance(8500.0f)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsOnSinglesOutsideOfRelativeTolerance(11500.0f)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="FailsOnSinglesOutsideOfUlpTolerance" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsOnSinglesOutsideOfUlpTolerance(2E+07.0f)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsOnSinglesOutsideOfUlpTolerance(2E+07.0f)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsWithBadValues(5)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsWithBadValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsWithBadValues("Hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsWithBadValues(double.NaN)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.FailsWithBadValues(double.PositiveInfinity)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ProvidesProperFailureMessage(5,"5")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ProvidesProperFailureMessage(null,"null")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ProvidesProperFailureMessage("Hello","\"Hello\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ProvidesProperFailureMessage(double.NaN,"NaN")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.ProvidesProperFailureMessage(double.PositiveInfinity,"Infinity")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.SucceedsWithGoodValues(4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.SucceedsWithGoodValues(4.0f)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.SucceedsWithGoodValues(4.0d)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.SucceedsWithGoodValues(4.0000m)" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.UsesProvidedComparerOfT" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.UsesProvidedComparisonOfT" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.UsesProvidedEqualityComparer" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.UsesProvidedEqualityComparerOfT" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualConstraintTest.UsesProvidedIComparer" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EqualityComparerTests" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualityComparerTests.CanCompareArrayContainingSelfToSelf" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EqualTest" executed="True" result="Success" success="True" time="0.019" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.EqualTest.FailedStringMatchShowsFailurePosition" executed="True" result="Success" success="True" time="0.007" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualTest.LongStringsAreTruncated" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualTest.LongStringsAreTruncatedAtBothEndsIfNecessary" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualTest.LongStringsAreTruncatedAtFrontEndIfNecessary" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.EqualTest.TestPropertyWithPrivateSetter" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ExactTypeTest" executed="True" result="Success" success="True" time="0.017" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ExactTypeTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ExactTypeTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ExactTypeTest.FailsWithBadValues(NUnit.Framework.Constraints.B)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ExactTypeTest.FailsWithBadValues(NUnit.Framework.Constraints.D2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ExactTypeTest.ProvidesProperFailureMessage(NUnit.Framework.Constraints.B,"<NUnit.Framework.Constraints.B>")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ExactTypeTest.ProvidesProperFailureMessage(NUnit.Framework.Constraints.D2,"<NUnit.Framework.Constraints.D2>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ExactTypeTest.SucceedsWithGoodValues(NUnit.Framework.Constraints.D1)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="FalseConstraintTest" executed="True" result="Success" success="True" time="0.027" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.FalseConstraintTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.FalseConstraintTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.FalseConstraintTest.FailsWithBadValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.FalseConstraintTest.FailsWithBadValues("hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.FalseConstraintTest.FailsWithBadValues(True)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.FalseConstraintTest.FailsWithBadValues(True)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.FalseConstraintTest.ProvidesProperFailureMessage(null,"null")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.FalseConstraintTest.ProvidesProperFailureMessage("hello","\"hello\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.FalseConstraintTest.ProvidesProperFailureMessage(True,"True")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.FalseConstraintTest.ProvidesProperFailureMessage(True,"True")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.FalseConstraintTest.SucceedsWithGoodValues(False)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.FalseConstraintTest.SucceedsWithGoodValues(False)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="FloatingPointNumericsTest" executed="True" result="Success" success="True" time="0.015" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.FloatingPointNumericsTest.DoubleEqualityWithUlps" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Constraints.FloatingPointNumericsTest.FloatEqualityWithUlps" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Framework.Constraints.FloatingPointNumericsTest.MirroredDoubleReinterpretation" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.FloatingPointNumericsTest.MirroredFloatReinterpretation" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.FloatingPointNumericsTest.MirroredIntegerReinterpretation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.FloatingPointNumericsTest.MirroredLongReinterpretation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="GreaterThanOrEqualTest" executed="True" result="Success" success="True" time="0.036" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.CanCompareIComparables" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.CanCompareIComparablesOfT" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.ComparisonConstraintTest.UsesProvidedComparerOfT" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.ComparisonConstraintTest.UsesProvidedComparisonOfT" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.ComparisonConstraintTest.UsesProvidedIComparer" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.000" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.FailsWithBadValues(4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="InvalidDataThrowsArgumentException" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.InvalidDataThrowsArgumentException(null)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.InvalidDataThrowsArgumentException("xxx")" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.ProvidesProperFailureMessage(4,"4")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.SucceedsWithGoodValues(6)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanOrEqualTest.SucceedsWithGoodValues(5)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="GreaterThanTest" executed="True" result="Success" success="True" time="0.036" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.CanCompareIComparables" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.CanCompareIComparablesOfT" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.ComparisonConstraintTest.UsesProvidedComparerOfT" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.ComparisonConstraintTest.UsesProvidedComparisonOfT" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.ComparisonConstraintTest.UsesProvidedIComparer" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.FailsWithBadValues(4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.FailsWithBadValues(5)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="InvalidDataThrowsArgumentException" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.InvalidDataThrowsArgumentException(null)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.InvalidDataThrowsArgumentException("xxx")" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.ProvidesProperFailureMessage(4,"4")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.ProvidesProperFailureMessage(5,"5")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.SucceedsWithGoodValues(6)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.GreaterThanTest.SucceedsWithGoodValues(5.001d)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="InstanceOfTypeTest" executed="True" result="Success" success="True" time="0.017" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.InstanceOfTypeTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.InstanceOfTypeTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.InstanceOfTypeTest.FailsWithBadValues(NUnit.Framework.Constraints.B)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.InstanceOfTypeTest.ProvidesProperFailureMessage(NUnit.Framework.Constraints.B,"<NUnit.Framework.Constraints.B>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.InstanceOfTypeTest.SucceedsWithGoodValues(NUnit.Framework.Constraints.D1)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.InstanceOfTypeTest.SucceedsWithGoodValues(NUnit.Framework.Constraints.D2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="LessThanOrEqualTest" executed="True" result="Success" success="True" time="0.031" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.CanCompareIComparables" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.CanCompareIComparablesOfT" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.ComparisonConstraintTest.UsesProvidedComparerOfT" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.ComparisonConstraintTest.UsesProvidedComparisonOfT" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.ComparisonConstraintTest.UsesProvidedIComparer" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.FailsWithBadValues(6)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="InvalidDataThrowsArgumentException" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.InvalidDataThrowsArgumentException(null)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.InvalidDataThrowsArgumentException("xxx")" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.ProvidesProperFailureMessage(6,"6")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.SucceedsWithGoodValues(4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanOrEqualTest.SucceedsWithGoodValues(5)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="LessThanTest" executed="True" result="Success" success="True" time="0.038" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.CanCompareIComparables" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.CanCompareIComparablesOfT" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.ComparisonConstraintTest.UsesProvidedComparerOfT" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.ComparisonConstraintTest.UsesProvidedComparisonOfT" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.ComparisonConstraintTest.UsesProvidedIComparer" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.FailsWithBadValues(6)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.FailsWithBadValues(5)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="InvalidDataThrowsArgumentException" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.InvalidDataThrowsArgumentException(null)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.InvalidDataThrowsArgumentException("xxx")" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.ProvidesProperFailureMessage(6,"6")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.ProvidesProperFailureMessage(5,"5")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.SucceedsWithGoodValues(4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.LessThanTest.SucceedsWithGoodValues(4.999d)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="MsgUtilTests" executed="True" result="Success" success="True" time="0.065" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.ClipExpectedAndActual_StringsDoNotFitInLine" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.ClipExpectedAndActual_StringsFitInLine" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.ClipExpectedAndActual_StringTailsFitInLine" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="EscapeControlCharsTest" executed="True" result="Success" success="True" time="0.046" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\a","\\a")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\r\r\r","\\r\\r\\r")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\r\n","\\r\\n")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\n\r","\\n\\r")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("This is a\rtest message","This is a\\rtest message")" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("","")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest(null,null)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\t","\\t")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\t\n","\\t\\n")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\\r\\n","\\\\r\\\\n")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\n","\\n")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\b","\\b")" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\f","\\f")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\v","\\v")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\x0085","\\x0085")" description="Next line character" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\x2028","\\x2028")" description="Line separator character" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\x2029","\\x2029")" description="Paragraph separator character" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\n\n","\\n\\n")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\n\n\n","\\n\\n\\n")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\r","\\r")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.EscapeControlCharsTest("\r\r","\\r\\r")" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="TestClipString" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.ClipAtEnd" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.NoClippingNeeded" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.ClipAtStart" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.MsgUtilTests.ClipAtStartAndEnd" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NaNConstraintTest" executed="True" result="Success" success="True" time="0.042" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.014" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.FailsWithBadValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.FailsWithBadValues("hello")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.FailsWithBadValues(42)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.FailsWithBadValues(double.PositiveInfinity)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.FailsWithBadValues(double.NegativeInfinity)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.FailsWithBadValues(float.PositiveInfinity)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.FailsWithBadValues(float.NegativeInfinity)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.ProvidesProperFailureMessage(null,"null")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.ProvidesProperFailureMessage("hello","\"hello\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.ProvidesProperFailureMessage(42,"42")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.ProvidesProperFailureMessage(double.PositiveInfinity,"Infinity")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.ProvidesProperFailureMessage(double.NegativeInfinity,"-Infinity")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.ProvidesProperFailureMessage(float.PositiveInfinity,"Infinity")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.ProvidesProperFailureMessage(float.NegativeInfinity,"-Infinity")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.SucceedsWithGoodValues(double.NaN)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NaNConstraintTest.SucceedsWithGoodValues(float.NaN)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NotTest" executed="True" result="Success" success="True" time="0.028" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NotTest.CanUseNotOperator" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NotTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NotTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NotTest.FailsWithBadValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.NotTest.NotHonorsIgnoreCaseUsingConstructors" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NotTest.NotHonorsIgnoreCaseUsingPrefixNotation" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NotTest.NotHonorsTolerance" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NotTest.ProvidesProperFailureMessage(null,"null")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NotTest.SucceedsWithGoodValues(42)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NotTest.SucceedsWithGoodValues("Hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NullConstraintTest" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NullConstraintTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NullConstraintTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NullConstraintTest.FailsWithBadValues("hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NullConstraintTest.ProvidesProperFailureMessage("hello","\"hello\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.000" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NullConstraintTest.SucceedsWithGoodValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NullOrEmptyStringConstraintTest" executed="True" result="Success" success="True" time="0.018" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NullOrEmptyStringConstraintTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NullOrEmptyStringConstraintTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NullOrEmptyStringConstraintTest.FailsWithBadValues("Hello")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="InvalidDataThrowsArgumentException" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NullOrEmptyStringConstraintTest.InvalidDataThrowsArgumentException(5)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NullOrEmptyStringConstraintTest.ProvidesProperFailureMessage("Hello","\"Hello\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NullOrEmptyStringConstraintTest.SucceedsWithGoodValues("")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NullOrEmptyStringConstraintTest.SucceedsWithGoodValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NumericsTest" executed="True" result="Success" success="True" time="0.079" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchDecimalWithoutToleranceMode" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchDecimalWithPercentage" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-suite type="ParameterizedTest" name="CanMatchIntegralsWithPercentage" executed="True" result="Success" success="True" time="0.029" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchIntegralsWithPercentage(10500)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchIntegralsWithPercentage(9500L)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchIntegralsWithPercentage(10500UL)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchIntegralsWithPercentage(9500UL)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchIntegralsWithPercentage(10000L)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchIntegralsWithPercentage(10000UL)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchIntegralsWithPercentage(10500L)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchIntegralsWithPercentage(10000)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchIntegralsWithPercentage(9500)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchIntegralsWithPercentage(10500)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchIntegralsWithPercentage(9500)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchIntegralsWithPercentage(10000)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanMatchWithoutToleranceMode" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchWithoutToleranceMode(123456789)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchWithoutToleranceMode(123456789UL)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchWithoutToleranceMode(123456789L)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchWithoutToleranceMode(123456789)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchWithoutToleranceMode(1234.568f)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.CanMatchWithoutToleranceMode(1234.5678d)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.FailsOnDecimalAbovePercentage" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.FailsOnDecimalBelowPercentage" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsOnIntegralsOutsideOfPercentage" executed="True" result="Success" success="True" time="0.019" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.FailsOnIntegralsOutsideOfPercentage(8500)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.FailsOnIntegralsOutsideOfPercentage(8500UL)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.FailsOnIntegralsOutsideOfPercentage(11500)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.FailsOnIntegralsOutsideOfPercentage(11500UL)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.FailsOnIntegralsOutsideOfPercentage(8500L)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.FailsOnIntegralsOutsideOfPercentage(11500)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.FailsOnIntegralsOutsideOfPercentage(11500L)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.NumericsTest.FailsOnIntegralsOutsideOfPercentage(8500)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="OrTest" executed="True" result="Success" success="True" time="0.021" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.OrTest.CanCombineTestsWithOrOperator" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.OrTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.OrTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.000" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.OrTest.FailsWithBadValues(37)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.OrTest.ProvidesProperFailureMessage(37,"37")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.OrTest.SucceedsWithGoodValues(99)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.OrTest.SucceedsWithGoodValues(42)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PropertyExistsTest" executed="True" result="Success" success="True" time="0.032" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.PropertyExistsTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.PropertyExistsTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.PropertyExistsTest.FailsWithBadValues(42)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.PropertyExistsTest.FailsWithBadValues(System.Collections.ArrayList)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.PropertyExistsTest.FailsWithBadValues(System.Int32)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="InvalidDataThrowsException" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.PropertyExistsTest.InvalidDataThrowsException(null)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.PropertyExistsTest.ProvidesProperFailureMessage(42,"<System.Int32>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.PropertyExistsTest.ProvidesProperFailureMessage(System.Collections.ArrayList,"<System.Collections.ArrayList>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.PropertyExistsTest.ProvidesProperFailureMessage(System.Int32,"<System.Int32>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.PropertyExistsTest.SucceedsWithGoodValues(System.Int32[])" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.PropertyExistsTest.SucceedsWithGoodValues("hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.PropertyExistsTest.SucceedsWithGoodValues(System.Array)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PropertyTest" executed="True" result="Success" success="True" time="0.035" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.PropertyTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.PropertyTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.PropertyTest.FailsWithBadValues(System.Int32[])" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.PropertyTest.FailsWithBadValues("goodbye")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="InvalidDataThrowsException" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.PropertyTest.InvalidDataThrowsException(null)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.PropertyTest.InvalidDataThrowsException(42)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.PropertyTest.InvalidDataThrowsException(System.Collections.ArrayList)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.PropertyTest.PropertyEqualToValueWithTolerance" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.PropertyTest.ProvidesProperFailureMessage(System.Int32[],"3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.PropertyTest.ProvidesProperFailureMessage("goodbye","7")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.PropertyTest.SucceedsWithGoodValues(System.Int32[])" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.PropertyTest.SucceedsWithGoodValues("hello")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RangeConstraintTest" executed="True" result="Success" success="True" time="0.039" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.FailsWithBadValues(4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.FailsWithBadValues(43)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="InvalidDataThrowsArgumentException" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.InvalidDataThrowsArgumentException(null)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.InvalidDataThrowsArgumentException("xxx")" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.ProvidesProperFailureMessage(4,"4")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.ProvidesProperFailureMessage(43,"43")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.SucceedsWithGoodValues(5)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.SucceedsWithGoodValues(23)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.SucceedsWithGoodValues(42)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.UsesProvidedComparerOfT" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.UsesProvidedComparisonOfT" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Framework.Constraints.RangeConstraintTest.UsesProvidedIComparer" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ReusableConstraintTests" executed="True" result="Success" success="True" time="0.012" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ReusableConstraintTests.CanCreateReusableConstraintByImplicitConversion" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-suite type="Theory" name="CanReuseReusableConstraintMultipleTimes" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ReusableConstraintTests.CanReuseReusableConstraintMultipleTimes(<not <empty>>)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ReusableConstraintTests.CanReuseReusableConstraintMultipleTimes(<not <null>>)" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ReusableConstraintTests.CanReuseReusableConstraintMultipleTimes(<property Length <greaterthan 3>>)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ReusableConstraintTests.CanReuseReusableConstraintMultipleTimes(<and <property Length <equal 4>> <startswith "te">>)" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SameAsTest" executed="True" result="Success" success="True" time="0.022" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SameAsTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SameAsTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SameAsTest.FailsWithBadValues(System.Object)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SameAsTest.FailsWithBadValues(3)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SameAsTest.FailsWithBadValues("Hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SameAsTest.ProvidesProperFailureMessage(System.Object,"<System.Object>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SameAsTest.ProvidesProperFailureMessage(3,"3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SameAsTest.ProvidesProperFailureMessage("Hello","\"Hello\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SameAsTest.SucceedsWithGoodValues(System.Object)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SamePathOrUnderTest_Linux" executed="True" result="Success" success="True" time="0.062" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.019" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.FailsWithBadValues(123)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.FailsWithBadValues("/Folder1/Folder2")" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.FailsWithBadValues("/FOLDER1/./junk/../Folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.FailsWithBadValues("/FOLDER1/./junk/../Folder2/temp/../Folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.FailsWithBadValues("/folder1/folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.FailsWithBadValues("/folder1/./folder2/../folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.FailsWithBadValues("/folder1")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.014" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.ProvidesProperFailureMessage(123,"123")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.ProvidesProperFailureMessage("/Folder1/Folder2","\"/Folder1/Folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.ProvidesProperFailureMessage("/FOLDER1/./junk/../Folder2","\"/FOLDER1/./junk/../Folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.ProvidesProperFailureMessage("/FOLDER1/./junk/../Folder2/temp/../Folder3","\"/FOLDER1/./junk/../Folder2/temp/../Folder3\"")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.ProvidesProperFailureMessage("/folder1/folder3","\"/folder1/folder3\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.ProvidesProperFailureMessage("/folder1/./folder2/../folder3","\"/folder1/./folder2/../folder3\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.ProvidesProperFailureMessage("/folder1","\"/folder1\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.016" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.SucceedsWithGoodValues("/folder1/folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.SucceedsWithGoodValues("/folder1/./folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.SucceedsWithGoodValues("/folder1/junk/../folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.SucceedsWithGoodValues("\\folder1\\folder2")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.SucceedsWithGoodValues("/folder1/folder2/folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.SucceedsWithGoodValues("/folder1/./folder2/folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.SucceedsWithGoodValues("/folder1/junk/../folder2/folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Linux.SucceedsWithGoodValues("\\folder1\\folder2\\folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SamePathOrUnderTest_Windows" executed="True" result="Success" success="True" time="0.046" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.FailsWithBadValues(123)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.FailsWithBadValues("C:\\folder1\\folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.FailsWithBadValues("C:\\folder1\\.\\folder2\\..\\file.temp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.ProvidesProperFailureMessage(123,"123")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.ProvidesProperFailureMessage("C:\\folder1\\folder3","\"C:\\folder1\\folder3\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.ProvidesProperFailureMessage("C:\\folder1\\.\\folder2\\..\\file.temp","\"C:\\folder1\\.\\folder2\\..\\file.temp\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.022" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.SucceedsWithGoodValues("C:\\folder1\\folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.SucceedsWithGoodValues("C:\\Folder1\\Folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.SucceedsWithGoodValues("C:\\folder1\\.\\folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.SucceedsWithGoodValues("C:\\folder1\\junk\\..\\folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.SucceedsWithGoodValues("C:\\FOLDER1\\.\\junk\\..\\Folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.SucceedsWithGoodValues("C:/folder1/folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.SucceedsWithGoodValues("C:\\folder1\\folder2\\folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.SucceedsWithGoodValues("C:\\folder1\\.\\folder2\\folder3")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.SucceedsWithGoodValues("C:\\folder1\\junk\\..\\folder2\\folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.SucceedsWithGoodValues("C:\\FOLDER1\\.\\junk\\..\\Folder2\\temp\\..\\Folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathOrUnderTest_Windows.SucceedsWithGoodValues("C:/folder1/folder2/folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SamePathTest_Linux" executed="True" result="Success" success="True" time="0.045" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.FailsWithBadValues(123)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.FailsWithBadValues("/folder2/file.tmp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.FailsWithBadValues("/folder1/./folder2/../file.temp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.FailsWithBadValues("/Folder1/File.TMP")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.FailsWithBadValues("/FOLDER1/./folder2/../File.TMP")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.ProvidesProperFailureMessage(123,"123")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.ProvidesProperFailureMessage("/folder2/file.tmp","\"/folder2/file.tmp\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.ProvidesProperFailureMessage("/folder1/./folder2/../file.temp","\"/folder1/./folder2/../file.temp\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.ProvidesProperFailureMessage("/Folder1/File.TMP","\"/Folder1/File.TMP\"")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.ProvidesProperFailureMessage("/FOLDER1/./folder2/../File.TMP","\"/FOLDER1/./folder2/../File.TMP\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.RootPathEquality" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.SucceedsWithGoodValues("/folder1/file.tmp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.SucceedsWithGoodValues("/folder1/./file.tmp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.SucceedsWithGoodValues("/folder1/folder2/../file.tmp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.SucceedsWithGoodValues("/folder1/./folder2/../file.tmp")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Linux.SucceedsWithGoodValues("\\folder1\\file.tmp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SamePathTest_Windows" executed="True" result="Success" success="True" time="0.038" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.FailsWithBadValues(123)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.FailsWithBadValues("C:\\folder2\\file.tmp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.FailsWithBadValues("C:\\folder1\\.\\folder2\\..\\file.temp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.ProvidesProperFailureMessage(123,"123")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.ProvidesProperFailureMessage("C:\\folder2\\file.tmp","\"C:\\folder2\\file.tmp\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.ProvidesProperFailureMessage("C:\\folder1\\.\\folder2\\..\\file.temp","\"C:\\folder1\\.\\folder2\\..\\file.temp\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.RootPathEquality" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.015" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.SucceedsWithGoodValues("C:\\folder1\\file.tmp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.SucceedsWithGoodValues("C:\\Folder1\\File.TMP")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.SucceedsWithGoodValues("C:\\folder1\\.\\file.tmp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.SucceedsWithGoodValues("C:\\folder1\\folder2\\..\\file.tmp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.SucceedsWithGoodValues("C:\\FOLDER1\\.\\folder2\\..\\File.TMP")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SamePathTest_Windows.SucceedsWithGoodValues("C:/folder1/file.tmp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="StartsWithTest" executed="True" result="Success" success="True" time="0.037" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.FailsWithBadValues("goodbye")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.FailsWithBadValues("HELLO THERE")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.FailsWithBadValues("I said hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.FailsWithBadValues("say hello to fred")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.FailsWithBadValues("")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.FailsWithBadValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.012" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.ProvidesProperFailureMessage("goodbye","\"goodbye\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.ProvidesProperFailureMessage("HELLO THERE","\"HELLO THERE\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.ProvidesProperFailureMessage("I said hello","\"I said hello\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.ProvidesProperFailureMessage("say hello to fred","\"say hello to fred\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.ProvidesProperFailureMessage("","<string.Empty>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.ProvidesProperFailureMessage(null,"null")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.SucceedsWithGoodValues("hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTest.SucceedsWithGoodValues("hello there")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="StartsWithTestIgnoringCase" executed="True" result="Success" success="True" time="0.040" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.012" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.FailsWithBadValues("goodbye")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.FailsWithBadValues("What the hell?")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.FailsWithBadValues("I said hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.FailsWithBadValues("say Hello to fred")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.FailsWithBadValues("")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.FailsWithBadValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.012" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.ProvidesProperFailureMessage("goodbye","\"goodbye\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.ProvidesProperFailureMessage("What the hell?","\"What the hell?\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.ProvidesProperFailureMessage("I said hello","\"I said hello\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.ProvidesProperFailureMessage("say Hello to fred","\"say Hello to fred\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.ProvidesProperFailureMessage("","<string.Empty>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.ProvidesProperFailureMessage(null,"null")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.SucceedsWithGoodValues("Hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.StartsWithTestIgnoringCase.SucceedsWithGoodValues("HELLO there")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SubPathTest_Linux" executed="True" result="Success" success="True" time="0.070" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.025" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.FailsWithBadValues(123)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.FailsWithBadValues("/Folder1/Folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.FailsWithBadValues("/FOLDER1/./junk/../Folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.FailsWithBadValues("/FOLDER1/./junk/../Folder2/temp/../Folder3")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.FailsWithBadValues("/folder1/folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.FailsWithBadValues("/folder1/./folder2/../folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.FailsWithBadValues("/folder1")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.FailsWithBadValues("/folder1/folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.FailsWithBadValues("/folder1/./folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.FailsWithBadValues("/folder1/junk/../folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.FailsWithBadValues("\\folder1\\folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.023" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ProvidesProperFailureMessage(123,"123")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ProvidesProperFailureMessage("/Folder1/Folder2","\"/Folder1/Folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ProvidesProperFailureMessage("/FOLDER1/./junk/../Folder2","\"/FOLDER1/./junk/../Folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ProvidesProperFailureMessage("/FOLDER1/./junk/../Folder2/temp/../Folder3","\"/FOLDER1/./junk/../Folder2/temp/../Folder3\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ProvidesProperFailureMessage("/folder1/folder3","\"/folder1/folder3\"")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ProvidesProperFailureMessage("/folder1/./folder2/../folder3","\"/folder1/./folder2/../folder3\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ProvidesProperFailureMessage("/folder1","\"/folder1\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ProvidesProperFailureMessage("/folder1/folder2","\"/folder1/folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ProvidesProperFailureMessage("/folder1/./folder2","\"/folder1/./folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ProvidesProperFailureMessage("/folder1/junk/../folder2","\"/folder1/junk/../folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.ProvidesProperFailureMessage("\\folder1\\folder2","\"\\folder1\\folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.SubPathOfRoot" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.SucceedsWithGoodValues("/folder1/folder2/folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.SucceedsWithGoodValues("/folder1/./folder2/folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.SucceedsWithGoodValues("/folder1/junk/../folder2/folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Linux.SucceedsWithGoodValues("\\folder1\\folder2\\folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SubPathTest_Windows" executed="True" result="Success" success="True" time="0.063" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.020" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.FailsWithBadValues(123)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.FailsWithBadValues("C:\\folder1\\folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.FailsWithBadValues("C:\\folder1\\.\\folder2\\..\\file.temp")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.FailsWithBadValues("C:\\folder1\\folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.FailsWithBadValues("C:\\Folder1\\Folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.FailsWithBadValues("C:\\folder1\\.\\folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.FailsWithBadValues("C:\\folder1\\junk\\..\\folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.FailsWithBadValues("C:\\FOLDER1\\.\\junk\\..\\Folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.FailsWithBadValues("C:/folder1/folder2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.019" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.ProvidesProperFailureMessage(123,"123")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.ProvidesProperFailureMessage("C:\\folder1\\folder3","\"C:\\folder1\\folder3\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.ProvidesProperFailureMessage("C:\\folder1\\.\\folder2\\..\\file.temp","\"C:\\folder1\\.\\folder2\\..\\file.temp\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.ProvidesProperFailureMessage("C:\\folder1\\folder2","\"C:\\folder1\\folder2\"")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.ProvidesProperFailureMessage("C:\\Folder1\\Folder2","\"C:\\Folder1\\Folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.ProvidesProperFailureMessage("C:\\folder1\\.\\folder2","\"C:\\folder1\\.\\folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.ProvidesProperFailureMessage("C:\\folder1\\junk\\..\\folder2","\"C:\\folder1\\junk\\..\\folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.ProvidesProperFailureMessage("C:\\FOLDER1\\.\\junk\\..\\Folder2","\"C:\\FOLDER1\\.\\junk\\..\\Folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.ProvidesProperFailureMessage("C:/folder1/folder2","\"C:/folder1/folder2\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.SubPathOfRoot" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.SucceedsWithGoodValues("C:\\folder1\\folder2\\folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.SucceedsWithGoodValues("C:\\folder1\\.\\folder2\\folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.SucceedsWithGoodValues("C:\\folder1\\junk\\..\\folder2\\folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.SucceedsWithGoodValues("C:\\FOLDER1\\.\\junk\\..\\Folder2\\temp\\..\\Folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubPathTest_Windows.SucceedsWithGoodValues("C:/folder1/folder2/folder3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SubstringTest" executed="True" result="Success" success="True" time="0.039" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.FailsWithBadValues("goodbye")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.FailsWithBadValues("HELLO")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.FailsWithBadValues("What the hell?")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.FailsWithBadValues("")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.FailsWithBadValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.ProvidesProperFailureMessage("goodbye","\"goodbye\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.ProvidesProperFailureMessage("HELLO","\"HELLO\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.ProvidesProperFailureMessage("What the hell?","\"What the hell?\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.ProvidesProperFailureMessage("","<string.Empty>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.ProvidesProperFailureMessage(null,"null")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.SucceedsWithGoodValues("hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.SucceedsWithGoodValues("hello there")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.SucceedsWithGoodValues("I said hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTest.SucceedsWithGoodValues("say hello to fred")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SubstringTestIgnoringCase" executed="True" result="Success" success="True" time="0.035" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.FailsWithBadValues("goodbye")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.FailsWithBadValues("What the hell?")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.FailsWithBadValues("")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.FailsWithBadValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.ProvidesProperFailureMessage("goodbye","\"goodbye\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.ProvidesProperFailureMessage("What the hell?","\"What the hell?\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.ProvidesProperFailureMessage("","<string.Empty>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.ProvidesProperFailureMessage(null,"null")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.SucceedsWithGoodValues("Hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.SucceedsWithGoodValues("HellO there")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.SucceedsWithGoodValues("I said HELLO")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.SubstringTestIgnoringCase.SucceedsWithGoodValues("say hello to fred")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ThrowsConstraintTest_ExactType" executed="True" result="Success" success="True" time="0.024" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_ExactType.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_ExactType.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_ExactType.FailsWithBadValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_ExactType.FailsWithBadValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_ExactType.FailsWithBadValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_ExactType.ProvidesProperFailureMessage(NUnit.Framework.TestDelegate,"<System.ApplicationException>")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_ExactType.ProvidesProperFailureMessage(NUnit.Framework.TestDelegate,"no exception thrown")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_ExactType.ProvidesProperFailureMessage(NUnit.Framework.TestDelegate,"<System.Exception>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_ExactType.SucceedsWithGoodValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ThrowsConstraintTest_InstanceOfType" executed="True" result="Success" success="True" time="0.027" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_InstanceOfType.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_InstanceOfType.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_InstanceOfType.FailsWithBadValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_InstanceOfType.FailsWithBadValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_InstanceOfType.FailsWithBadValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_InstanceOfType.ProvidesProperFailureMessage(NUnit.Framework.TestDelegate,"<System.ArgumentException>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_InstanceOfType.ProvidesProperFailureMessage(NUnit.Framework.TestDelegate,"no exception thrown")" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_InstanceOfType.ProvidesProperFailureMessage(NUnit.Framework.TestDelegate,"<System.Exception>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_InstanceOfType.SucceedsWithGoodValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_InstanceOfType.SucceedsWithGoodValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ThrowsConstraintTest_WithConstraint" executed="True" result="Success" success="True" time="0.023" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_WithConstraint.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_WithConstraint.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_WithConstraint.FailsWithBadValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_WithConstraint.FailsWithBadValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_WithConstraint.FailsWithBadValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_WithConstraint.ProvidesProperFailureMessage(NUnit.Framework.TestDelegate,"<System.ApplicationException>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_WithConstraint.ProvidesProperFailureMessage(NUnit.Framework.TestDelegate,"no exception thrown")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_WithConstraint.ProvidesProperFailureMessage(NUnit.Framework.TestDelegate,"<System.Exception>")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ThrowsConstraintTest_WithConstraint.SucceedsWithGoodValues(NUnit.Framework.TestDelegate)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ToStringTests" executed="True" result="Success" success="True" time="0.016" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.ToStringTests.CanDisplayPrefixConstraints_Resolved" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ToStringTests.CanDisplaySimpleConstraints_Resolved" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ToStringTests.CanDisplaySimpleConstraints_Unresolved" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Constraints.ToStringTests.DisplayBinaryConstraints_Resolved" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ToStringTests.DisplayBinaryConstraints_UnResolved" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.ToStringTests.DisplayPrefixConstraints_Unresolved" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TrueConstraintTest" executed="True" result="Success" success="True" time="0.030" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.TrueConstraintTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.TrueConstraintTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.TrueConstraintTest.FailsWithBadValues(null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.TrueConstraintTest.FailsWithBadValues("hello")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.TrueConstraintTest.FailsWithBadValues(False)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.TrueConstraintTest.FailsWithBadValues(False)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.TrueConstraintTest.ProvidesProperFailureMessage(null,"null")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.TrueConstraintTest.ProvidesProperFailureMessage("hello","\"hello\"")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.TrueConstraintTest.ProvidesProperFailureMessage(False,"False")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.TrueConstraintTest.ProvidesProperFailureMessage(False,"False")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.TrueConstraintTest.SucceedsWithGoodValues(True)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.TrueConstraintTest.SucceedsWithGoodValues(True)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="XmlSerializableTest" executed="True" result="Success" success="True" time="1.824" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.XmlSerializableTest.ConstraintTestBaseNoData.ProvidesProperDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.XmlSerializableTest.ConstraintTestBaseNoData.ProvidesProperStringRepresentation" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="FailsWithBadValues" executed="True" result="Success" success="True" time="0.703" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.XmlSerializableTest.FailsWithBadValues(System.Collections.Generic.Dictionary`2[System.String,System.String])" executed="True" result="Success" success="True" time="0.339" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.XmlSerializableTest.FailsWithBadValues(NUnit.Framework.Constraints.InternalClass)" executed="True" result="Success" success="True" time="0.206" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.XmlSerializableTest.FailsWithBadValues(NUnit.Framework.Constraints.InternalWithSerializableAttributeClass)" executed="True" result="Success" success="True" time="0.152" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="InvalidDataThrowsArgumentException" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.XmlSerializableTest.InvalidDataThrowsArgumentException(null)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ProvidesProperFailureMessage" executed="True" result="Success" success="True" time="0.471" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.XmlSerializableTest.ProvidesProperFailureMessage(System.Collections.Generic.Dictionary`2[System.String,System.String],"<Dictionary`2>")" executed="True" result="Success" success="True" time="0.156" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.XmlSerializableTest.ProvidesProperFailureMessage(NUnit.Framework.Constraints.InternalClass,"<InternalClass>")" executed="True" result="Success" success="True" time="0.157" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.XmlSerializableTest.ProvidesProperFailureMessage(NUnit.Framework.Constraints.InternalWithSerializableAttributeClass,"<InternalWithSerializableAttributeClass>")" executed="True" result="Success" success="True" time="0.152" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SucceedsWithGoodValues" executed="True" result="Success" success="True" time="0.633" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Constraints.XmlSerializableTest.SucceedsWithGoodValues(1)" executed="True" result="Success" success="True" time="0.030" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.XmlSerializableTest.SucceedsWithGoodValues("a")" executed="True" result="Success" success="True" time="0.005" asserts="1" />
+ <test-case name="NUnit.Framework.Constraints.XmlSerializableTest.SucceedsWithGoodValues(System.Collections.ArrayList)" executed="True" result="Success" success="True" time="0.589" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="Namespace" name="Syntax" executed="True" result="Success" success="True" time="5.267" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="AfterSyntaxUsingActualPassedByRef" executed="True" result="Success" success="True" time="1.439" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingActualPassedByRef.EqualToTest" executed="True" result="Success" success="True" time="0.203" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingActualPassedByRef.GreaterTest" executed="True" result="Success" success="True" time="0.201" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingActualPassedByRef.HasMemberTest" executed="True" result="Success" success="True" time="0.203" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingActualPassedByRef.NullTest" executed="True" result="Success" success="True" time="0.201" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingActualPassedByRef.SameAsTest" executed="True" result="Success" success="True" time="0.200" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingActualPassedByRef.TextTest" executed="True" result="Success" success="True" time="0.201" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingActualPassedByRef.TrueTest" executed="True" result="Success" success="True" time="0.200" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AfterSyntaxUsingAnonymousDelegates" executed="True" result="Success" success="True" time="1.426" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingAnonymousDelegates.EqualToTest" executed="True" result="Success" success="True" time="0.201" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingAnonymousDelegates.GreaterTest" executed="True" result="Success" success="True" time="0.200" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingAnonymousDelegates.HasMemberTest" executed="True" result="Success" success="True" time="0.201" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingAnonymousDelegates.NullTest" executed="True" result="Success" success="True" time="0.200" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingAnonymousDelegates.SameAsTest" executed="True" result="Success" success="True" time="0.200" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingAnonymousDelegates.TextTest" executed="True" result="Success" success="True" time="0.200" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterSyntaxUsingAnonymousDelegates.TrueTest" executed="True" result="Success" success="True" time="0.200" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AfterTest_AndOperator" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AfterTest_AndOperator.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterTest_AndOperator.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterTest_AndOperator.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AfterTest_ProperyTest" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AfterTest_ProperyTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterTest_ProperyTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterTest_ProperyTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AfterTest_SimpleConstraint" executed="True" result="Success" success="True" time="0.012" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AfterTest_SimpleConstraint.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterTest_SimpleConstraint.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AfterTest_SimpleConstraint.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AllTest" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AllTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AllTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AllTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AndIsEvaluatedBeforeFollowingOr" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AndIsEvaluatedBeforeFollowingOr.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AndIsEvaluatedBeforeFollowingOr.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AndIsEvaluatedBeforeFollowingOr.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AndIsEvaluatedBeforePrecedingOr" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AndIsEvaluatedBeforePrecedingOr.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AndIsEvaluatedBeforePrecedingOr.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AndIsEvaluatedBeforePrecedingOr.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AndOperatorOverride" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AndOperatorOverride.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AndOperatorOverride.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AndOperatorOverride.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AndTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AndTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AndTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AndTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AndTest_ThreeAndsWithNot" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AndTest_ThreeAndsWithNot.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AndTest_ThreeAndsWithNot.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AndTest_ThreeAndsWithNot.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ArbitraryConstraintMatching" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.ArbitraryConstraintMatching.CanMatchCustomConstraint" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ArbitraryConstraintMatching.CanMatchCustomConstraintAfterPrefix" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ArbitraryConstraintMatching.CanMatchCustomConstraintsUnderAndOperator" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ArbitraryConstraintMatching.CanMatchPredicate" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssignableFromTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AssignableFromTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AssignableFromTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AssignableFromTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssignableFromTest_Generic" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AssignableFromTest_Generic.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AssignableFromTest_Generic.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AssignableFromTest_Generic.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssignableToTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AssignableToTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AssignableToTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AssignableToTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssignableToTest_Generic" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AssignableToTest_Generic.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AssignableToTest_Generic.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AssignableToTest_Generic.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AtLeastTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AtLeastTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AtLeastTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AtLeastTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AtMostTest" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AtMostTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AtMostTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AtMostTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AttributeTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AttributeTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AttributeTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AttributeTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AttributeTest_Generic" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AttributeTest_Generic.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AttributeTest_Generic.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AttributeTest_Generic.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AttributeTestWithFollowingConstraint" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.AttributeTestWithFollowingConstraint.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AttributeTestWithFollowingConstraint.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.AttributeTestWithFollowingConstraint.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="BinarySerializableTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.BinarySerializableTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.BinarySerializableTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.BinarySerializableTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionContainsTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionContainsTest_Comparer" executed="True" result="Success" success="True" time="0.014" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_Comparer.ComparerIsCalled" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_Comparer.ComparerIsCalledInExpression" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_Comparer.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_Comparer.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_Comparer.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionContainsTest_Comparer_String" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_Comparer_String.ComparerIsCalled" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_Comparer_String.ComparerIsCalledInExpression" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_Comparer_String.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_Comparer_String.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_Comparer_String.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionContainsTest_String" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_String.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_String.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionContainsTest_String.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionEquivalentTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionEquivalentTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionEquivalentTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionEquivalentTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionMemberTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionMemberTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionMemberTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionMemberTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionMemberTest_Comparer" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionMemberTest_Comparer.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionMemberTest_Comparer.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionMemberTest_Comparer.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionOrderedByTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedByTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedByTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedByTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionOrderedByTest_Comparer" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedByTest_Comparer.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedByTest_Comparer.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedByTest_Comparer.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionOrderedByTest_Comparer_Descending" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedByTest_Comparer_Descending.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedByTest_Comparer_Descending.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedByTest_Comparer_Descending.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionOrderedByTest_Descending" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedByTest_Descending.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedByTest_Descending.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedByTest_Descending.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionOrderedTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionOrderedTest_Comparer" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedTest_Comparer.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedTest_Comparer.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedTest_Comparer.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionOrderedTest_Comparer_Descending" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedTest_Comparer_Descending.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedTest_Comparer_Descending.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedTest_Comparer_Descending.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionOrderedTest_Descending" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedTest_Descending.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedTest_Descending.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionOrderedTest_Descending.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionSubsetTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CollectionSubsetTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionSubsetTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CollectionSubsetTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CountTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.CountTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CountTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.CountTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EmptyTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.EmptyTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.EmptyTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.EmptyTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EndsWithTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.EndsWithTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.EndsWithTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.EndsWithTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EndsWithTest_IgnoreCase" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.EndsWithTest_IgnoreCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.EndsWithTest_IgnoreCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.EndsWithTest_IgnoreCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EqualityTests" executed="True" result="Success" success="True" time="0.019" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.EqualityTests.EqualityTestsUsingDefaultFloatingPointTolerance" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Syntax.EqualityTests.EqualityTestsWithTolerance" executed="True" result="Success" success="True" time="0.002" asserts="8" />
+ <test-case name="NUnit.Framework.Syntax.EqualityTests.EqualityTestsWithTolerance_MixedFloatAndDouble" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ <test-case name="NUnit.Framework.Syntax.EqualityTests.EqualityTestsWithTolerance_MixingTypesGenerally" executed="True" result="Success" success="True" time="0.002" asserts="7" />
+ <test-case name="NUnit.Framework.Syntax.EqualityTests.SimpleEqualityTests" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EqualToTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.EqualToTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.EqualToTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.EqualToTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EqualToTest_IgnoreCase" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.EqualToTest_IgnoreCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.EqualToTest_IgnoreCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.EqualToTest_IgnoreCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EqualToTest_WithinTolerance" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.EqualToTest_WithinTolerance.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.EqualToTest_WithinTolerance.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.EqualToTest_WithinTolerance.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ExactTypeTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.ExactTypeTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ExactTypeTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ExactTypeTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ExactTypeTest_Generic" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.ExactTypeTest_Generic.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ExactTypeTest_Generic.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ExactTypeTest_Generic.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="FalseTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.FalseTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.FalseTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.FalseTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="GreaterThanOrEqualTest" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.GreaterThanOrEqualTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.GreaterThanOrEqualTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.GreaterThanOrEqualTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="GreaterThanTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.GreaterThanTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.GreaterThanTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.GreaterThanTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="InstanceOfTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.InstanceOfTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InstanceOfTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InstanceOfTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="InstanceOfTest_Generic" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.InstanceOfTest_Generic.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InstanceOfTest_Generic.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InstanceOfTest_Generic.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="InstanceOfTypeTest" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.InstanceOfTypeTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InstanceOfTypeTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InstanceOfTypeTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="InstanceOfTypeTest_Generic" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.InstanceOfTypeTest_Generic.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InstanceOfTypeTest_Generic.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InstanceOfTypeTest_Generic.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="InvalidCodeTests" executed="True" result="Success" success="True" time="1.283" asserts="0">
+ <results>
+ <test-suite type="ParameterizedTest" name="CodeShouldNotCompile" executed="True" result="Success" success="True" time="0.790" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.InvalidCodeTests.CodeShouldNotCompile("Is.Null.Not")" executed="True" result="Success" success="True" time="0.228" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InvalidCodeTests.CodeShouldNotCompile("Is.Null.And.Throws")" executed="True" result="Success" success="True" time="0.110" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InvalidCodeTests.CodeShouldNotCompile("Is.All.And.And")" executed="True" result="Success" success="True" time="0.109" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InvalidCodeTests.CodeShouldNotCompile("Is.Not.Null.GreaterThan(10))")" executed="True" result="Success" success="True" time="0.107" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InvalidCodeTests.CodeShouldNotCompile("Is.Null.All")" executed="True" result="Success" success="True" time="0.111" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InvalidCodeTests.CodeShouldNotCompile("Is.And")" executed="True" result="Success" success="True" time="0.109" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CodeShouldNotCompileAsFinishedConstraint" executed="True" result="Success" success="True" time="0.488" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.InvalidCodeTests.CodeShouldNotCompileAsFinishedConstraint("Is.All")" executed="True" result="Success" success="True" time="0.115" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InvalidCodeTests.CodeShouldNotCompileAsFinishedConstraint("Is.All.Not")" executed="True" result="Success" success="True" time="0.117" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InvalidCodeTests.CodeShouldNotCompileAsFinishedConstraint("Is.Not")" executed="True" result="Success" success="True" time="0.128" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.InvalidCodeTests.CodeShouldNotCompileAsFinishedConstraint("Is.Not.All")" executed="True" result="Success" success="True" time="0.120" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="LengthTest" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.LengthTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.LengthTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.LengthTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="LessThanOrEqualTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.LessThanOrEqualTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.LessThanOrEqualTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.LessThanOrEqualTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="LessThanTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.LessThanTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.LessThanTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.LessThanTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="MessageTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.MessageTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.MessageTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.MessageTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="MixedOperatorOverrides" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.MixedOperatorOverrides.ComplexTests" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NaNTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.NaNTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NaNTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NaNTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NoneTest" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.NoneTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NoneTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NoneTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NotOperatorOverride" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.NotOperatorOverride.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotOperatorOverride.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotOperatorOverride.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NotSamePathOrUnderTest_IgnoreCase" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.NotSamePathOrUnderTest_IgnoreCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotSamePathOrUnderTest_IgnoreCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotSamePathOrUnderTest_IgnoreCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NotSamePathOrUnderTest_RespectCase" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.NotSamePathOrUnderTest_RespectCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotSamePathOrUnderTest_RespectCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotSamePathOrUnderTest_RespectCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NotSamePathTest_IgnoreCase" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.NotSamePathTest_IgnoreCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotSamePathTest_IgnoreCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotSamePathTest_IgnoreCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NotSamePathTest_RespectCase" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.NotSamePathTest_RespectCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotSamePathTest_RespectCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotSamePathTest_RespectCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NotTest" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.NotTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NotTest_Cascaded" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.NotTest_Cascaded.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotTest_Cascaded.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NotTest_Cascaded.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NullTest" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.NullTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NullTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.NullTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="OperatorPrecedenceTests" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.OperatorPrecedenceTests.SomeTests" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Framework.Syntax.OperatorPrecedenceTests.WithTests" executed="True" result="Success" success="True" time="0.002" asserts="6" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="OrOperatorOverride" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.OrOperatorOverride.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.OrOperatorOverride.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.OrOperatorOverride.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="OrTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.OrTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.OrTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.OrTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="OrTest_ThreeOrs" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.OrTest_ThreeOrs.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.OrTest_ThreeOrs.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.OrTest_ThreeOrs.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PropertyExistsTest" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.PropertyExistsTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.PropertyExistsTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.PropertyExistsTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PropertyExistsTest_AndFollows" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.PropertyExistsTest_AndFollows.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.PropertyExistsTest_AndFollows.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.PropertyExistsTest_AndFollows.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PropertySyntaxVariations" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.PropertySyntaxVariations.ExistenceTest" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Syntax.PropertySyntaxVariations.SeparateConstraintTest" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PropertyTest_ConstraintFollows" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.PropertyTest_ConstraintFollows.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.PropertyTest_ConstraintFollows.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.PropertyTest_ConstraintFollows.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PropertyTest_NotFollows" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.PropertyTest_NotFollows.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.PropertyTest_NotFollows.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.PropertyTest_NotFollows.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RegexTest" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.RegexTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.RegexTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.RegexTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RegexTest_IgnoreCase" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.RegexTest_IgnoreCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.RegexTest_IgnoreCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.RegexTest_IgnoreCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SamePathOrUnderTest" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.SamePathOrUnderTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SamePathOrUnderTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SamePathOrUnderTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SamePathOrUnderTest_IgnoreCase" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.SamePathOrUnderTest_IgnoreCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SamePathOrUnderTest_IgnoreCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SamePathOrUnderTest_IgnoreCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SamePathOrUnderTest_RespectCase" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.SamePathOrUnderTest_RespectCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SamePathOrUnderTest_RespectCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SamePathOrUnderTest_RespectCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SamePathTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.SamePathTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SamePathTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SamePathTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SamePathTest_IgnoreCase" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.SamePathTest_IgnoreCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SamePathTest_IgnoreCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SamePathTest_IgnoreCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SamePathTest_RespectCase" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.SamePathTest_RespectCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SamePathTest_RespectCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SamePathTest_RespectCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SomeTest" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.SomeTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SomeTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SomeTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SomeTest_BeforeBinaryOperators" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.SomeTest_BeforeBinaryOperators.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SomeTest_BeforeBinaryOperators.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SomeTest_BeforeBinaryOperators.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SomeTest_NestedSome" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.SomeTest_NestedSome.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SomeTest_NestedSome.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SomeTest_NestedSome.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SomeTest_UseOfAndSome" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.SomeTest_UseOfAndSome.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SomeTest_UseOfAndSome.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SomeTest_UseOfAndSome.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="StartsWithTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.StartsWithTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.StartsWithTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.StartsWithTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="StartsWithTest_IgnoreCase" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.StartsWithTest_IgnoreCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.StartsWithTest_IgnoreCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.StartsWithTest_IgnoreCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SubstringTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.SubstringTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SubstringTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SubstringTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SubstringTest_IgnoreCase" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.SubstringTest_IgnoreCase.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SubstringTest_IgnoreCase.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.SubstringTest_IgnoreCase.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TextContains" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.TextContains.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.TextContains.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.TextContains.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TextEndsWithTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.TextEndsWithTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.TextEndsWithTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.TextEndsWithTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TextMatchesTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.TextMatchesTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.TextMatchesTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.TextMatchesTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TextStartsWithTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.TextStartsWithTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.TextStartsWithTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.TextStartsWithTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ThrowsTests" executed="True" result="Success" success="True" time="0.052" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.DelegateThrowsException" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsArgumentException" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsException" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsExceptionInstanceOf" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsExceptionTypeOf" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsExceptionTypeOfAndConstraint" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsExceptionWithConstraint" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsExceptionWithInnerException" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsInnerException" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsInstanceOf" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsInvalidOperationException" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsTargetInvocationExceptionWithInnerException" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsTypeOf" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsTypeOfAndConstraint" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsTypeOfWithConstraint" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsTypeOfWithInnerException" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.ThrowsTests.ThrowsTypeofWithMessage" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TrueTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.TrueTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.TrueTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.TrueTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="UniqueTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.UniqueTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.UniqueTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.UniqueTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="XmlSerializableTest" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Syntax.XmlSerializableTest.SyntaxTest.SupportedByConstraintBuilder" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.XmlSerializableTest.SyntaxTest.SupportedByInheritedSyntax" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Syntax.XmlSerializableTest.SyntaxTest.SupportedByStaticSyntax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="Namespace" name="Tests" executed="True" result="Success" success="True" time="1.625" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="ArrayEqualsFailureMessageFixture" executed="True" result="Success" success="True" time="0.058" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.ActualArrayIsLonger" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.ArrayAndCollection_Failure" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.ArraysDeclaredAsDifferentTypes" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.ArraysHaveDifferentRanks" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.ArraysWithDifferentDimensionsAsCollection" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.ArraysWithDifferentRanksAsCollection" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.DifferentArrayTypesEqualFails" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.DoubleDimensionedArrays" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.ExpectedArrayIsLonger" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.FailureOnSingleDimensionedArrays" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.FiveDimensionedArrays" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.JaggedArrayComparedToSimpleArray" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.JaggedArrays" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.SameLengthDifferentContent" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFailureMessageFixture.TripleDimensionedArrays" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ArrayEqualsFixture" executed="True" result="Success" success="True" time="0.053" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArrayAndCollection" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArrayIsEqualToItself" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArrayOfIntAndArrayOfDouble" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArraysDeclaredAsDifferentTypes" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArraysOfArrays" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArraysOfDecimal" executed="True" result="Success" success="True" time="0.002" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArraysOfDouble" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArraysOfInt" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArraysOfMixedTypes" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArraysOfString" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArraysPassedAsObjects" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArraysWithDifferentDimensionsMatchedAsCollection" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.ArraysWithDifferentRanksComparedAsCollection" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.DoubleDimensionedArrays" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.FiveDimensionedArrays" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.JaggedArrays" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ArrayEqualsFixture.TripleDimensionedArrays" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ArrayNotEqualFixture" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ArrayNotEqualFixture.ArraysDeclaredAsDifferentTypes" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.ArrayNotEqualFixture.DifferentLengthArrays" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ArrayNotEqualFixture.SameLengthDifferentContent" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssertThrowsTests" executed="True" result="Success" success="True" time="0.041" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.AssertThrowsTests.BaseExceptionThrown" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.AssertThrowsTests.CanCatchExceptionOfDerivedType" executed="True" result="Success" success="True" time="0.002" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.AssertThrowsTests.CanCatchExceptionOfExactType" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.AssertThrowsTests.CanCatchUnspecifiedException" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.AssertThrowsTests.CorrectExceptionIsReturnedToMethod" executed="True" result="Success" success="True" time="0.003" asserts="16" />
+ <test-case name="NUnit.Framework.Tests.AssertThrowsTests.CorrectExceptionThrown" executed="True" result="Success" success="True" time="0.002" asserts="5" />
+ <test-case name="NUnit.Framework.Tests.AssertThrowsTests.DerivedExceptionThrown" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.AssertThrowsTests.DoesNotThrowFails" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssertThrowsTests.DoesNotThrowSuceeds" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssertThrowsTests.NoExceptionThrown" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.AssertThrowsTests.UnrelatedExceptionThrown" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssumeThatTests" executed="True" result="Success" success="True" time="0.079" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.AssumptionPasses_ActualAndConstraint" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.AssumptionPasses_ActualAndConstraintWithMessage" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.AssumptionPasses_ActualAndConstraintWithMessageAndArgs" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.AssumptionPasses_Boolean" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.AssumptionPasses_BooleanWithMessage" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.AssumptionPasses_BooleanWithMessageAndArgs" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.AssumptionPasses_DelegateAndConstraint" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.AssumptionPasses_DelegateAndConstraintWithMessage" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.AssumptionPasses_DelegateAndConstraintWithMessageAndArgs" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.AssumptionPasses_ReferenceAndConstraint" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.AssumptionPasses_ReferenceAndConstraintWithMessage" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.AssumptionPasses_ReferenceAndConstraintWithMessageAndArgs" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.FailureThrowsInconclusiveException_ActualAndConstraint" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.FailureThrowsInconclusiveException_ActualAndConstraintWithMessage" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.FailureThrowsInconclusiveException_ActualAndConstraintWithMessageAndArgs" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.FailureThrowsInconclusiveException_Boolean" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.FailureThrowsInconclusiveException_BooleanWithMessage" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.FailureThrowsInconclusiveException_BooleanWithMessageAndArgs" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.FailureThrowsInconclusiveException_DelegateAndConstraint" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.FailureThrowsInconclusiveException_DelegateAndConstraintWithMessage" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.FailureThrowsInconclusiveException_DelegateAndConstraintWithMessageAndArgs" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.FailureThrowsInconclusiveException_ReferenceAndConstraint" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.FailureThrowsInconclusiveException_ReferenceAndConstraintWithMessage" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.AssumeThatTests.FailureThrowsInconclusiveException_ReferenceAndConstraintWithMessageAndArgs" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CollectionAssertTest" executed="True" result="Success" success="True" time="0.164" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.AreEqual" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.AreEqual_HandlesNull" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.AreEqual_UsingIterator" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.AreEqualFail" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.AreEqualFailCount" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.AreEquivalentHandlesNull" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.AreNotEqual" executed="True" result="Success" success="True" time="0.002" asserts="6" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.AreNotEqual_Fails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.AreNotEqual_HandlesNull" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.Contains_ICollection" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.Contains_IList" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.ContainsFails_EmptyICollection" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.ContainsFails_EmptyIList" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.ContainsFails_ICollection" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.ContainsFails_ILIst" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.ContainsNull_ICollection" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.ContainsNull_IList" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.DoesNotContain" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.DoesNotContain_Empty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.DoesNotContain_Fails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.EnsureComparerIsUsed" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.Equivalent" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.EquivalentFailOne" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.EquivalentFailTwo" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsNotSubsetOf" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsNotSubsetOf_Fails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsNotSubsetOfHandlesNull" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsOrdered" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsOrdered_Allows_adjacent_equal_values" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsOrdered_ContainedTypesMustBeCompatible" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsOrdered_Fails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsOrdered_Handles_custom_comparison" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsOrdered_Handles_custom_comparison2" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsOrdered_Handles_null" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsOrdered_TypesMustImplementIComparable" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsSubsetOf" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsSubsetOf_Fails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.IsSubsetOfHandlesNull" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.ItemsNotNull" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.ItemsNotNullFailure" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.ItemsOfType" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.ItemsOfTypeFailure" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.NotEquivalent" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.NotEquivalent_Fails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.NotEquivalentHandlesNull" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.Unique_WithNull" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.Unique_WithObjects" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.Unique_WithStrings" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.UniqueFailure" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.CollectionAssertTest.UniqueFailure_WithTwoNulls" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ConditionAssertTests" executed="True" result="Success" success="True" time="0.057" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsEmpty" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsEmptyFailsOnNonEmptyArray" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsEmptyFailsOnNullString" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsEmptyFailsOnString" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsFalse" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsFalseFails" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsNaN" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsNaNFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsNotEmpty" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsNotEmptyFailsOnEmptyArray" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsNotEmptyFailsOnEmptyArrayList" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsNotEmptyFailsOnEmptyHashTable" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsNotEmptyFailsOnEmptyString" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsNotNull" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsNotNullFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsNull" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsNullFails" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsTrue" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.ConditionAssertTests.IsTrueFails" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="DirectoryAssertTests" executed="True" result="Success" success="True" time="0.212" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreEqualFailsWhenOneDoesNotExist" executed="True" result="Success" success="True" time="0.006" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreEqualFailsWhenOneIsNull" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreEqualFailsWithDirectoryInfos" executed="True" result="Success" success="True" time="0.006" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreEqualFailsWithStringPath" executed="True" result="Success" success="True" time="0.006" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreEqualPassesWhenBothAreNull" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreEqualPassesWithDirectoryInfos" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreEqualPassesWithStringPath" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreNotEqualFailsWhenBothAreNull" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreNotEqualFailsWithDirectoryInfos" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreNotEqualFailsWithStringPath" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreNotEqualPassesIfOneIsNull" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreNotEqualPassesWhenOneDoesNotExist" executed="True" result="Success" success="True" time="0.005" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.AreNotEqualPassesWithStringPath" executed="True" result="Success" success="True" time="0.006" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsEmptyFailsWithInvalidDirectory" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsEmptyFailsWithNonEmptyDirectoryUsingDirectoryInfo" executed="True" result="Success" success="True" time="0.005" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsEmptyFailsWithNonEmptyDirectoryUsingStringPath" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsEmptyPassesWithEmptyDirectoryUsingDirectoryInfo" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsEmptyPassesWithEmptyDirectoryUsingStringPath" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsEmptyThrowsUsingNull" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsNotEmptyFailsWithEmptyDirectoryUsingDirectoryInfo" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsNotEmptyFailsWithEmptyDirectoryUsingStringPath" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsNotEmptyFailsWithInvalidDirectory" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsNotEmptyPassesWithNonEmptyDirectoryUsingDirectoryInfo" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsNotEmptyPassesWithNonEmptyDirectoryUsingStringPath" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsNotEmptyThrowsUsingNull" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsNotWithinFailsWithDirectoryInfo" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsNotWithinFailsWithStringPath" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsNotWithinPassesWhenOutsidePathUsingDirectoryInfo" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsNotWithinPassesWhenOutsidePathUsingStringPath" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsNotWithinThrowsWhenBothAreNull" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsWithinFailsWhenOutsidePathUsingDirectoryInfo" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsWithinFailsWhenOutsidePathUsingStringPath" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsWithinPassesWithDirectoryInfo" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsWithinPassesWithStringPath" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsWithinPassesWithTempPath" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.DirectoryAssertTests.IsWithinThrowsWhenBothAreNull" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EqualsFixture" executed="True" result="Success" success="True" time="0.117" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.Bug575936Int32Int64Comparison" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.Byte" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.DateTimeEqual" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.DateTimeNotEqual" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.Decimal" executed="True" result="Success" success="True" time="0.002" asserts="6" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.DirectoryInfoEquality" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.DirectoryInfoEqualityIgnoresTrailingDirectorySeparator" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.DoubleNotEqualMessageDisplaysAllDigits" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.DoubleNotEqualMessageDisplaysDefaultTolerance" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.DoubleNotEqualMessageDisplaysTolerance" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.DoubleNotEqualWithNanDoesNotDisplayDefaultTolerance" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.EnumsEqual" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.EnumsNotEqual" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.Equals" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.EqualsFail" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.EqualsNaNFails" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.EqualsNull" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.EqualsSameTypes" executed="True" result="Success" success="True" time="0.004" asserts="31" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.EqualsThrowsException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.Float" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.FloatNotEqualMessageDisplaysAllDigits" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.FloatNotEqualMessageDisplaysTolerance" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.Int" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.IntegerEquals" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.IntegerLongComparison" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.NanEqualsFails" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.NanEqualsNaNSucceeds" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.NegInfinityEqualsInfinity" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.PosInfinityEqualsInfinity" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.PosInfinityNotEquals" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.PosInfinityNotEqualsNegInfinity" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.ReferenceEqualsThrowsException" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.Short" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.SinglePosInfinityNotEqualsNegInfinity" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.String" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.EqualsFixture.UInt" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="FileAssertTests" executed="True" result="Success" success="True" time="0.143" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreEqualFailsWhenOneIsNull" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreEqualFailsWithFileInfos" executed="True" result="Success" success="True" time="0.006" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreEqualFailsWithFiles" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreEqualFailsWithStreams" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreEqualFailsWithTextFilesAfterReadingBothFiles" executed="True" result="Success" success="True" time="0.005" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreEqualPassesUsingSameFileTwice" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreEqualPassesWhenBothAreNull" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreEqualPassesWithEqualStreams" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreEqualPassesWithFileInfos" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreEqualPassesWithFiles" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreEqualPassesWithSameStream" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreEqualPassesWithTextFiles" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreNotEqualFailsWhenBothAreNull" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreNotEqualFailsWithFileInfos" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreNotEqualFailsWithFiles" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreNotEqualFailsWithStreams" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreNotEqualIteratesOverTheEntireFile" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreNotEqualIteratesOverTheEntireFileAndFails" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreNotEqualPassesIfOneIsNull" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreNotEqualPassesWithFileInfos" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreNotEqualPassesWithFiles" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.AreNotEqualPassesWithStreams" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.NonReadableStreamGivesException" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.FileAssertTests.NonSeekableStreamGivesException" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="GreaterEqualFixture" executed="True" result="Success" success="True" time="0.053" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.GreaterEqualFixture.FailureMessage" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.GreaterEqualFixture.GreaterOrEqual_Decimal" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.GreaterEqualFixture.GreaterOrEqual_Double" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.GreaterEqualFixture.GreaterOrEqual_Float" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.GreaterEqualFixture.GreaterOrEqual_Int32" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.GreaterEqualFixture.GreaterOrEqual_Long" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.GreaterEqualFixture.GreaterOrEqual_UInt32" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.GreaterEqualFixture.GreaterOrEqual_ULong" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.GreaterEqualFixture.MixedTypes" executed="True" result="Success" success="True" time="0.004" asserts="42" />
+ <test-case name="NUnit.Framework.Tests.GreaterEqualFixture.NotGreaterEqualIComparable" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.GreaterEqualFixture.NotGreaterOrEqual" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="GreaterFixture" executed="True" result="Success" success="True" time="0.022" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.GreaterFixture.FailureMessage" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.GreaterFixture.Greater" executed="True" result="Success" success="True" time="0.002" asserts="7" />
+ <test-case name="NUnit.Framework.Tests.GreaterFixture.MixedTypes" executed="True" result="Success" success="True" time="0.005" asserts="42" />
+ <test-case name="NUnit.Framework.Tests.GreaterFixture.NotGreater" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.GreaterFixture.NotGreaterIComparable" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.GreaterFixture.NotGreaterWhenEqual" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="LessEqualFixture" executed="True" result="Success" success="True" time="0.024" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.LessEqualFixture.FailureMessage" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.LessEqualFixture.LessOrEqual" executed="True" result="Success" success="True" time="0.008" asserts="42" />
+ <test-case name="NUnit.Framework.Tests.LessEqualFixture.MixedTypes" executed="True" result="Success" success="True" time="0.004" asserts="42" />
+ <test-case name="NUnit.Framework.Tests.LessEqualFixture.NotLessEqualIComparable" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.LessEqualFixture.NotLessOrEqual" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="LessFixture" executed="True" result="Success" success="True" time="0.028" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.LessFixture.FailureMessage" executed="True" result="Success" success="True" time="0.003" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.LessFixture.Less" executed="True" result="Success" success="True" time="0.006" asserts="18" />
+ <test-case name="NUnit.Framework.Tests.LessFixture.MixedTypes" executed="True" result="Success" success="True" time="0.003" asserts="42" />
+ <test-case name="NUnit.Framework.Tests.LessFixture.NotLess" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.LessFixture.NotLessIComparable" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.LessFixture.NotLessWhenEqual" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ListContentsTests" executed="True" result="Success" success="True" time="0.020" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ListContentsTests.ArrayFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ListContentsTests.ArrayListFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ListContentsTests.ArrayListSucceeds" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.ListContentsTests.ArraySucceeds" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.ListContentsTests.DifferentTypesMayBeEqual" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.ListContentsTests.EmptyArrayFails" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.ListContentsTests.NullArrayIsError" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NotEqualFixture" executed="True" result="Success" success="True" time="0.026" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.NotEqualFixture.ArraysNotEqual" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.NotEqualFixture.ArraysNotEqualFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.NotEqualFixture.NotEqual" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.NotEqualFixture.NotEqualFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.NotEqualFixture.NotEqualSameTypes" executed="True" result="Success" success="True" time="0.003" asserts="21" />
+ <test-case name="NUnit.Framework.Tests.NotEqualFixture.NullEqualsNull" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.NotEqualFixture.NullNotEqualToNonNull" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.NotEqualFixture.UInt" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NotSameFixture" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.NotSameFixture.NotSame" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.NotSameFixture.NotSameFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NullableTypesTests" executed="True" result="Success" success="True" time="0.039" asserts="0">
+ <categories>
+ <category name="Generics" />
+ </categories>
+ <results>
+ <test-case name="NUnit.Framework.Tests.NullableTypesTests.CanCompareNullableDecimals" executed="True" result="Success" success="True" time="0.003" asserts="12" />
+ <test-case name="NUnit.Framework.Tests.NullableTypesTests.CanCompareNullableDoubles" executed="True" result="Success" success="True" time="0.001" asserts="12" />
+ <test-case name="NUnit.Framework.Tests.NullableTypesTests.CanCompareNullableEnums" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.NullableTypesTests.CanCompareNullableInts" executed="True" result="Success" success="True" time="0.001" asserts="12" />
+ <test-case name="NUnit.Framework.Tests.NullableTypesTests.CanCompareNullableMixedNumerics" executed="True" result="Success" success="True" time="0.006" asserts="54" />
+ <test-case name="NUnit.Framework.Tests.NullableTypesTests.CanCompareNullableStructs" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.NullableTypesTests.CanCompareWithTolerance" executed="True" result="Success" success="True" time="0.002" asserts="4" />
+ <test-case name="NUnit.Framework.Tests.NullableTypesTests.CanTestForNaN" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.NullableTypesTests.CanTestForNull" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RandomizerTests" executed="True" result="Success" success="True" time="0.026" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.RandomizerTests.RandomDoublesAreUnique" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.RandomizerTests.RandomIntsAreUnique" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.RandomizerTests.RandomizersWithDifferentSeedsReturnDifferentValues" executed="True" result="Success" success="True" time="0.000" asserts="10" />
+ <test-case name="NUnit.Framework.Tests.RandomizerTests.RandomizersWithSameSeedsReturnSameValues" executed="True" result="Success" success="True" time="0.000" asserts="10" />
+ <test-case name="NUnit.Framework.Tests.RandomizerTests.RandomSeedsAreUnique" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.RandomizerTests.ReturnsDifferentRandomizersForDifferentMethods" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.RandomizerTests.ReturnsSameRandomizerForDifferentParametersOfSameMethod" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.RandomizerTests.ReturnsSameRandomizerForSameMethod" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.RandomizerTests.ReturnsSameRandomizerForSameParameter" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RangeTests" executed="True" result="Success" success="True" time="0.012" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.RangeTests.InRangeFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.RangeTests.InRangeSucceeds" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.RangeTests.NotInRangeFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.RangeTests.NotInRangeSucceeds" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SameFixture" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.SameFixture.Same" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.SameFixture.SameFails" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.SameFixture.SameValueTypes" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="StringAssertTests" executed="True" result="Success" success="True" time="0.058" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.CaseInsensitiveCompare" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.CaseInsensitiveCompareFails" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.Contains" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.ContainsFails" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.DifferentEncodingsOfSameStringAreNotEqual" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.DoesNotContain" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.DoesNotContainFails" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.DoesNotEndWith" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.DoesNotEndWithFails" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.DoesNotStartWith" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.DoesNotStartWithFails" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.EndsWith" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.EndsWithFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.IsMatch" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.IsMatchFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.StartsWith" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.StringAssertTests.StartsWithFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestFixtureAttributeTests" executed="True" result="Success" success="True" time="0.017" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.TestFixtureAttributeTests.ConstructWithCombinedArgs" executed="True" result="Success" success="True" time="0.001" asserts="2">
+ <categories>
+ <category name="Generics" />
+ </categories>
+ </test-case>
+ <test-case name="NUnit.Framework.Tests.TestFixtureAttributeTests.ConstructWithFixtureArgs" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.TestFixtureAttributeTests.ConstructWithFixtureArgsAndSetTypeArgs" executed="True" result="Success" success="True" time="0.000" asserts="2">
+ <categories>
+ <category name="Generics" />
+ </categories>
+ </test-case>
+ <test-case name="NUnit.Framework.Tests.TestFixtureAttributeTests.ConstructWithJustTypeArgs" executed="True" result="Success" success="True" time="0.000" asserts="2">
+ <categories>
+ <category name="Generics" />
+ </categories>
+ </test-case>
+ <test-case name="NUnit.Framework.Tests.TestFixtureAttributeTests.ConstructWithNoArgumentsAndSetTypeArgs" executed="True" result="Success" success="True" time="0.000" asserts="2">
+ <categories>
+ <category name="Generics" />
+ </categories>
+ </test-case>
+ <test-case name="NUnit.Framework.Tests.TestFixtureAttributeTests.ConstructWithoutArguments" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TextMessageWriterTests" executed="True" result="Success" success="True" time="0.039" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.ConnectorIsWrittenWithSurroundingSpaces" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.DateTimeTest" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.DecimalIsWrittenToTwentyNineDigits" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.DecimalIsWrittenWithTrailingM" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.DisplayStringDifferences" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.DisplayStringDifferences_NoClipping" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.DoubleIsWrittenToSeventeenDigits" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.DoubleIsWrittenWithTrailingD" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.FloatIsWrittenToNineDigits" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.FloatIsWrittenWithTrailingF" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.IntegerIsWrittenAsIs" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.PredicateIsWrittenWithTrailingSpace" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.TextMessageWriterTests.StringIsWrittenWithQuotes" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TypeAssertTests" executed="True" result="Success" success="True" time="0.034" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.TypeAssertTests.ExactType" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.TypeAssertTests.ExactTypeFails" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.TypeAssertTests.IsAssignableFrom" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.TypeAssertTests.IsAssignableFromFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.TypeAssertTests.IsInstanceOf" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.TypeAssertTests.IsInstanceOfFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.TypeAssertTests.IsNotAssignableFrom" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.TypeAssertTests.IsNotAssignableFromFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Framework.Tests.TypeAssertTests.IsNotInstanceOf" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Framework.Tests.TypeAssertTests.IsNotInstanceOfFails" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ValuesAttributeTests" executed="True" result="Success" success="True" time="0.145" asserts="0">
+ <results>
+ <test-suite type="ParameterizedTest" name="CanConverDoubleToDecimal" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConverDoubleToDecimal(12.5m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertDoubleRangeToDecimal" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertDoubleRangeToDecimal(1m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertDoubleRangeToDecimal(1.1m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertDoubleRangeToDecimal(1.2m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertDoubleRangeToDecimal(1.3m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertIntRangeToByte" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntRangeToByte(1)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntRangeToByte(2)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntRangeToByte(3)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertIntRangeToDecimal" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntRangeToDecimal(1m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntRangeToDecimal(2m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntRangeToDecimal(3m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertIntRangeToSByte" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntRangeToSByte(1)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntRangeToSByte(2)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntRangeToSByte(3)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertIntRangeToShort" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntRangeToShort(1)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntRangeToShort(2)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntRangeToShort(3)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertIntToDecimal" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertIntToDecimal(12m)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertRandomDoubleToDecimal" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomDoubleToDecimal(6.11135305329755m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomDoubleToDecimal(6.88476982521115m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomDoubleToDecimal(7.08979185162568m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertRandomIntToByte" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomIntToByte(1)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomIntToByte(1)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomIntToByte(7)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertRandomIntToDecimal" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomIntToDecimal(9m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomIntToDecimal(5m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomIntToDecimal(2m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertRandomIntToSByte" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomIntToSByte(7)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomIntToSByte(3)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomIntToSByte(3)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertRandomIntToShort" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomIntToShort(9)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomIntToShort(3)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertRandomIntToShort(2)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertSmallIntsToByte" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertSmallIntsToByte(5)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertSmallIntsToSByte" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertSmallIntsToSByte(5)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertSmallIntsToShort" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertSmallIntsToShort(5)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertStringToDecimal" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.CanConvertStringToDecimal(12.5m)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.RangeAttributeWithDoubleRangeAndStep" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.RangeAttributeWithFloatRangeAndStep" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.RangeAttributeWithIntRange" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.RangeAttributeWithIntRangeAndStep" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.RangeAttributeWithLongRangeAndStep" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Framework.Tests.ValuesAttributeTests.ValuesAttributeProvidesSpecifiedValues" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="Assembly" name="D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.core.tests.dll" executed="True" result="Success" success="True" time="11.084" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="NUnit" executed="True" result="Success" success="True" time="11.083" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Core" executed="True" result="Success" success="True" time="11.083" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Tests" executed="True" result="Success" success="True" time="11.083" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="AssemblyHelperTests" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.AssemblyHelperTests.GetPathForAssembly" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.AssemblyHelperTests.GetPathForType" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssemblyReaderTests" executed="True" result="Success" success="True" time="0.021" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.AssemblyReaderTests.CreateFromAssembly" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.AssemblyReaderTests.CreateFromPath" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.AssemblyReaderTests.ImageRuntimeVersion" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.AssemblyReaderTests.IsDotNetFile" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.AssemblyReaderTests.IsValidPeFile" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.AssemblyReaderTests.IsValidPeFile_Fails" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssemblyResolverTests" executed="True" result="Success" success="True" time="0.085" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.AssemblyResolverTests.AddFile" executed="True" result="Success" success="True" time="0.080" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssemblyTests" executed="True" result="Success" success="True" time="0.556" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.AssemblyTests.AppSettingsLoaded" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.AssemblyTests.LoadAssembly" executed="True" result="Success" success="True" time="0.490" asserts="2" />
+ <test-case name="NUnit.Core.Tests.AssemblyTests.LoadAssemblyNotFound" executed="True" result="Success" success="True" time="0.002" asserts="0" />
+ <test-case name="NUnit.Core.Tests.AssemblyTests.LoadAssemblyWithoutTestFixtures" executed="True" result="Success" success="True" time="0.025" asserts="3" />
+ <test-case name="NUnit.Core.Tests.AssemblyTests.LoadTestFixtureFromAssembly" executed="True" result="Success" success="True" time="0.019" asserts="1" />
+ <test-case name="NUnit.Core.Tests.AssemblyTests.NUnitTraceIsEnabled" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.AssemblyTests.RunSetsCurrentDirectory" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssemblyVersionFixture" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.AssemblyVersionFixture.Version" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssertInconclusiveFixture" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.AssertInconclusiveFixture.AssertInconclusiveThrowsException" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AssertPassFixture" executed="True" result="Success" success="True" time="0.012" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.AssertPassFixture.AssertPassReturnsSuccess" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <reason>
+ <message><![CDATA[This test is OK!]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.AssertPassFixture.SubsequentFailureIsIrrelevant" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <reason>
+ <message><![CDATA[This test is OK!]]></message>
+ </reason>
+ </test-case>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="AttributeInheritance" executed="True" result="Success" success="True" time="0.019" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.AttributeInheritance.InheritedExplicitAttributeIsRecognized" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Core.Tests.AttributeInheritance.InheritedFixtureAttributeIsRecognized" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.AttributeInheritance.InheritedIgnoreAttributeIsRecognized" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.AttributeInheritance.InheritedTestAttributeIsRecognized" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CallContextTests" executed="True" result="Success" success="True" time="0.017" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CallContextTests.GenericPrincipalTest" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CallContextTests.ILogicalThreadAffinativeTest" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CallContextTests.ILogicalThreadAffinativeTestConsole" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CallContextTests.SetCustomPrincipalOnThread" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CallContextTests.SetGenericPrincipalOnThread" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CallContextTests.UseCustomIdentity" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CategoryAttributeTests" executed="True" result="Success" success="True" time="0.046" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CategoryAttributeTests.CanDeriveFromCategoryAttribute" executed="True" result="Success" success="True" time="0.005" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CategoryAttributeTests.CategoryOnFixture" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CategoryAttributeTests.CategoryOnTestCase" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-suite type="ParameterizedTest" name="CountTestsUsingCategoryFilter" executed="True" result="Success" success="True" time="0.015" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CategoryAttributeTests.CountTestsUsingCategoryFilter("Database")" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CategoryAttributeTests.CountTestsUsingCategoryFilter("Critical")" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CategoryAttributeTests.CountTestsUsingCategoryFilter("Long")" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Core.Tests.CategoryAttributeTests.CountTestsWithoutCategoryFilter" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CategoryAttributeTests.DerivedCategoryMayBeInherited" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CombinatorialTests" executed="True" result="Success" success="True" time="0.129" asserts="0">
+ <results>
+ <test-suite type="ParameterizedTest" name="RandomArgsAreIndependent" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RandomArgsAreIndependent(0.97558036352302d,0.149350758245844d)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="RandomTest" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RandomTest(87,0.678519468604829d)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RandomTest(203,0.255695442788161d)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RandomTest(99,0.085432846138921d)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RandomTest(92,0.232372152261609d)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RandomTest(74,0.284822722098242d)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="RangeTest" executed="True" result="Success" success="True" time="0.021" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RangeTest(0.2d,10)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RangeTest(0.2d,15)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RangeTest(0.2d,20)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RangeTest(0.4d,10)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RangeTest(0.4d,15)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RangeTest(0.4d,20)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RangeTest(0.6d,10)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RangeTest(0.6d,15)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.RangeTest(0.6d,20)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SingleArgument" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.SingleArgument(1.3d)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.SingleArgument(1.7d)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.SingleArgument(1.5d)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ThreeArguments_Combinatorial" executed="True" result="Success" success="True" time="0.042" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(1,10,"Charlie")" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(1,10,"Joe")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(1,10,"Frank")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(1,20,"Charlie")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(1,20,"Joe")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(1,20,"Frank")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(2,10,"Charlie")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(2,10,"Joe")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(2,10,"Frank")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(2,20,"Charlie")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(2,20,"Joe")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(2,20,"Frank")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(3,10,"Charlie")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(3,10,"Joe")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(3,10,"Frank")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(3,20,"Charlie")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(3,20,"Joe")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Combinatorial(3,20,"Frank")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ThreeArguments_Sequential" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Sequential(1,10,"Charlie")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Sequential(2,20,"Joe")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.ThreeArguments_Sequential(3,null,"Frank")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="TwoArguments_Combinatorial" executed="True" result="Success" success="True" time="0.012" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.TwoArguments_Combinatorial(1,10)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.TwoArguments_Combinatorial(1,20)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.TwoArguments_Combinatorial(2,10)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.TwoArguments_Combinatorial(2,20)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.TwoArguments_Combinatorial(3,10)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.TwoArguments_Combinatorial(3,20)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="TwoArguments_Sequential" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.TwoArguments_Sequential(1,10)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.TwoArguments_Sequential(2,20)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CombinatorialTests.TwoArguments_Sequential(3,null)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CoreExtensionsTests" executed="True" result="Success" success="True" time="0.039" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CoreExtensionsTests.CanAddDecorator" executed="True" result="Success" success="True" time="0.007" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CoreExtensionsTests.CanAddEventListener" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Core.Tests.CoreExtensionsTests.CanAddSuiteBuilder" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Core.Tests.CoreExtensionsTests.CanAddTestCaseBuilder" executed="True" result="Success" success="True" time="0.002" asserts="4" />
+ <test-case name="NUnit.Core.Tests.CoreExtensionsTests.CanAddTestCaseBuilder2" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Core.Tests.CoreExtensionsTests.DecoratorsRunInOrderOfPriorities" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CoreExtensionsTests.HasEventListenerExtensionPoint" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Core.Tests.CoreExtensionsTests.HasSuiteBuildersExtensionPoint" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.CoreExtensionsTests.HasTestCaseBuildersExtensionPoint" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Core.Tests.CoreExtensionsTests.HasTestDecoratorsExtensionPoint" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.CoreExtensionsTests.HasTestFrameworkRegistry" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CultureSettingAndDetectionTests" executed="True" result="Success" success="True" time="0.065" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CultureSettingAndDetectionTests.CanMatchAttributeWithExclude" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CultureSettingAndDetectionTests.CanMatchAttributeWithInclude" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.CultureSettingAndDetectionTests.CanMatchAttributeWithIncludeAndExclude" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.CultureSettingAndDetectionTests.CanMatchStrings" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Core.Tests.CultureSettingAndDetectionTests.LoadWithFrenchCanadianCulture" executed="True" result="Success" success="True" time="0.006" asserts="5" />
+ <test-case name="NUnit.Core.Tests.CultureSettingAndDetectionTests.LoadWithFrenchCulture" executed="True" result="Success" success="True" time="0.004" asserts="5" />
+ <test-case name="NUnit.Core.Tests.CultureSettingAndDetectionTests.LoadWithRussianCulture" executed="True" result="Success" success="True" time="0.004" asserts="5" />
+ <test-case name="NUnit.Core.Tests.CultureSettingAndDetectionTests.SettingInvalidCultureGivesError" executed="True" result="Success" success="True" time="0.026" asserts="3" />
+ <test-suite type="ParameterizedTest" name="UseWithParameterizedTest" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CultureSettingAndDetectionTests.UseWithParameterizedTest()" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CultureSettingAndDetectionTests+NestedFixture" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.CultureSettingAndDetectionTests+NestedFixture.CanSetCultureOnFixture" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="DatapointTests" executed="True" result="Success" success="True" time="0.038" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.DatapointTests.WorksOnArray" executed="True" result="Success" success="True" time="0.011" asserts="3" />
+ <test-case name="NUnit.Core.Tests.DatapointTests.WorksOnField" executed="True" result="Success" success="True" time="0.006" asserts="3" />
+ <test-case name="NUnit.Core.Tests.DatapointTests.WorksOnMethodReturningArray" executed="True" result="Success" success="True" time="0.006" asserts="3" />
+ <test-case name="NUnit.Core.Tests.DatapointTests.WorksOnPropertyReturningArray" executed="True" result="Success" success="True" time="0.006" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="DirectoryChangeTests" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.DirectoryChangeTests.ChangingCurrentDirectoryGivesWarning" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="DirectorySwapperTests" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.DirectorySwapperTests.ChangeAndRestore" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Core.Tests.DirectorySwapperTests.SwapAndRestore" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EventQueueTests" executed="True" result="Success" success="True" time="0.289" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.EventQueueTests.DequeueEmpty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.EventQueueTests.PumpAutoStopsOnRunFinished" executed="True" result="Success" success="True" time="0.102" asserts="3" />
+ <test-case name="NUnit.Core.Tests.EventQueueTests.PumpEvents" executed="True" result="Success" success="True" time="0.006" asserts="12">
+ <properties>
+ <property name="Timeout" value="3000" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.EventQueueTests.PumpEventsWithAutoStop" executed="True" result="Success" success="True" time="0.002" asserts="1">
+ <properties>
+ <property name="Timeout" value="2000" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.EventQueueTests.PumpPendingEventsAfterAutoStop" executed="True" result="Success" success="True" time="0.102" asserts="2">
+ <properties>
+ <property name="Timeout" value="2000" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.EventQueueTests.PumpSynchronousAndAsynchronousEvents" executed="True" result="Success" success="True" time="0.003" asserts="6">
+ <properties>
+ <property name="Timeout" value="1000" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.EventQueueTests.QueueEvents" executed="True" result="Success" success="True" time="0.000" asserts="9" />
+ <test-case name="NUnit.Core.Tests.EventQueueTests.SendEvents" executed="True" result="Success" success="True" time="0.001" asserts="9" />
+ <test-case name="NUnit.Core.Tests.EventQueueTests.StartAndStopPumpOnEmptyQueue" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.EventQueueTests.TracingEventListenerDoesNotDeadlock" executed="True" result="Success" success="True" time="0.035" asserts="0">
+ <properties>
+ <property name="Timeout" value="1000" />
+ </properties>
+ </test-case>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EventQueueTests+DequeueBlocking_StopTest" executed="True" result="Success" success="True" time="0.033" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.EventQueueTests+DequeueBlocking_StopTest.DequeueBlocking_Stop" executed="True" result="Success" success="True" time="0.032" asserts="3">
+ <properties>
+ <property name="Timeout" value="1000" />
+ </properties>
+ </test-case>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EventQueueTests+SetWaitHandle_Enqueue_AsynchronousTest" executed="True" result="Success" success="True" time="0.032" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.EventQueueTests+SetWaitHandle_Enqueue_AsynchronousTest.SetWaitHandle_Enqueue_Asynchronous" executed="True" result="Success" success="True" time="0.031" asserts="4">
+ <properties>
+ <property name="Timeout" value="1000" />
+ </properties>
+ </test-case>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EventQueueTests+SetWaitHandle_Enqueue_SynchronousTest" executed="True" result="Success" success="True" time="0.063" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.EventQueueTests+SetWaitHandle_Enqueue_SynchronousTest.SetWaitHandle_Enqueue_Synchronous" executed="True" result="Success" success="True" time="0.061" asserts="5">
+ <properties>
+ <property name="Timeout" value="1000" />
+ </properties>
+ </test-case>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EventTestFixture" description="Tests that proper events are generated when running test" executed="True" result="Success" success="True" time="0.082" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.EventTestFixture.CheckEventListening" executed="True" result="Success" success="True" time="0.054" asserts="4" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ExpectExceptionTest" executed="True" result="Success" success="True" time="0.200" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.AssertFailBeforeException" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.CanExpectUnspecifiedException" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.ExceptionHandlerIsCalledWhenExceptionMatches" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.ExceptionHandlerIsCalledWhenExceptionMatches_AlternateHandler" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.ExceptionHandlerIsNotCalledWhenExceptionDoesNotMatch" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.ExceptionHandlerIsNotCalledWhenExceptionDoesNotMatch_AlternateHandler" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.MethodThrowsArgumentOutOfRange" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.MethodThrowsException" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.MethodThrowsRightExceptionMessage" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.MethodThrowsWrongExceptionMessage" executed="True" result="Success" success="True" time="0.006" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.SetUpThrowsSameException" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TearDownThrowsSameException" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestExceptionNameNotThrown" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestExceptionNameNotThrownWithUserMessage" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestExceptionTypeNotThrown" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestExceptionTypeNotThrownWithUserMessage" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestFailsWhenBaseExceptionIsThrown" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestFailsWhenDerivedExceptionIsThrown" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestIsNotRunnableWhenAlternateHandlerIsNotFound" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestMismatchedExceptionMessage" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestMismatchedExceptionMessageWithUserMessage" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestMismatchedExceptionName" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestMismatchedExceptionNameWithUserMessage" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestMismatchedExceptionType" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestMismatchedExceptionTypeAsNamedParameter" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestMismatchedExceptionTypeWithUserMessage" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWhenSpecifiedExceptionNameAndContainsMatch" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWhenSpecifiedExceptionNameAndRegexMatch" executed="True" result="Success" success="True" time="0.005" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWithSpecifiedExceptionName" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWithSpecifiedExceptionNameAndExactMatch" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWithSpecifiedExceptionNameAndMessage_NewFormat" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWithSpecifiedExceptionNameAsNamedParameter" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWithSpecifiedExceptionType" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWithSpecifiedExceptionTypeAndContainsMatch" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWithSpecifiedExceptionTypeAndExactMatch" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWithSpecifiedExceptionTypeAndMessage" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWithSpecifiedExceptionTypeAndRegexMatch" executed="True" result="Success" success="True" time="0.003" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWithSpecifiedExceptionTypeAndStartsWithMatch" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestSucceedsWithSpecifiedExceptionTypeAsNamedParameter" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestUnspecifiedExceptionNotThrown" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.TestUnspecifiedExceptionNotThrownWithUserMessage" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.ThrowingMyAppException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.ThrowingMyAppExceptionWithMessage" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.ExpectExceptionTest.ThrowNUnitException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="FailFixture" executed="True" result="Success" success="True" time="0.025" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.FailFixture.BadStackTraceIsHandled" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Core.Tests.FailFixture.CustomExceptionIsHandled" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.FailFixture.FailInheritsFromSystemException" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.FailFixture.FailRecordsInnerException" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.FailFixture.FailThrowsAssertionException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Core.Tests.FailFixture.VerifyFailWorks" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="FixtureSetupTearDownTest" executed="True" result="Success" success="True" time="0.135" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.BaseSetUpCalledFirstAndTearDownCalledLast" executed="True" result="Success" success="True" time="0.006" asserts="6" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.CheckInheritedSetUpAndTearDownAreCalled" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.DisposeCalledWhenFixtureImplementsIDisposable" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.FixtureWithNoTestsCallsFixtureSetUpAndTearDown" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.HandleErrorInFixtureSetup" executed="True" result="Success" success="True" time="0.006" asserts="11" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.HandleErrorInFixtureTearDown" executed="True" result="Success" success="True" time="0.004" asserts="9" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.HandleExceptionInFixtureConstructor" executed="True" result="Success" success="True" time="0.003" asserts="9" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.HandleIgnoreInFixtureSetup" executed="True" result="Success" success="True" time="0.005" asserts="7" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.HandleSetUpAndTearDownWithTestInName" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.IgnoredFixtureShouldNotCallFixtureSetUpOrTearDown" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.MakeSureSetUpAndTearDownAreCalled" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.MakeSureSetUpAndTearDownAreCalledOnExplicitFixture" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.OverriddenSetUpAndTearDownAreNotCalled" executed="True" result="Success" success="True" time="0.005" asserts="4" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.RerunFixtureAfterSetUpFixed" executed="True" result="Success" success="True" time="0.007" asserts="4" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.RerunFixtureAfterTearDownFixed" executed="True" result="Success" success="True" time="0.007" asserts="4" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.RunningSingleMethodCallsSetUpAndTearDown" executed="True" result="Success" success="True" time="0.006" asserts="2" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.StaticBaseSetUpCalledFirstAndTearDownCalledLast" executed="True" result="Success" success="True" time="0.004" asserts="6" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.StaticClassSetUpAndTearDownAreCalled" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest.StaticSetUpAndTearDownAreCalled" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="FixtureSetupTearDownTest+ChangesMadeInFixtureSetUp" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest+ChangesMadeInFixtureSetUp.TestThatChangesPersistUsingSameThread" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.FixtureSetupTearDownTest+ChangesMadeInFixtureSetUp.TestThatChangesPersistUsingSeparateThread" executed="True" result="Success" success="True" time="0.001" asserts="3">
+ <properties>
+ <property name="RequiresThread" value="True" />
+ </properties>
+ </test-case>
+ </results>
+ </test-suite>
+ <test-suite type="Namespace" name="Generic" executed="True" result="Success" success="True" time="0.083" asserts="0">
+ <results>
+ <test-suite type="GenericFixture" name="DeduceTypeArgsFromArgs<T1,T2>" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="DeduceTypeArgsFromArgs<Double,Int32>(100.0d,42)" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <categories>
+ <category name="Generics" />
+ </categories>
+ <results>
+ <test-suite type="ParameterizedTest" name="TestMyArgTypes" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.Generic.DeduceTypeArgsFromArgs<Double,Int32>(100.0d,42).TestMyArgTypes(5,7)" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="DeduceTypeArgsFromArgs<Int32,Double>(42,100.0d)" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <categories>
+ <category name="Generics" />
+ </categories>
+ <results>
+ <test-suite type="ParameterizedTest" name="TestMyArgTypes" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.Generic.DeduceTypeArgsFromArgs<Int32,Double>(42,100.0d).TestMyArgTypes(5,7)" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="GenericFixture" name="SimpleGenericFixture<TList>" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="SimpleGenericFixture<ArrayList>" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <categories>
+ <category name="Generics" />
+ </categories>
+ <results>
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericFixture<ArrayList>.TestCollectionCount" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SimpleGenericFixture<List<Int32>>" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <categories>
+ <category name="Generics" />
+ </categories>
+ <results>
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericFixture<List<Int32>>.TestCollectionCount" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SimpleGenericMethods" executed="True" result="Success" success="True" time="0.038" asserts="0">
+ <categories>
+ <category name="Generics" />
+ </categories>
+ <results>
+ <test-suite type="ParameterizedTest" name="GenericTestMethodWithOneTypeParameter" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericMethods.GenericTestMethodWithOneTypeParameter<Double>(5.0d,2.0d,"ABC")" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericMethods.GenericTestMethodWithOneTypeParameter<Double>(5.0d,2.0d,"ABC")" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericMethods.GenericTestMethodWithOneTypeParameter<Int32>(5,2,"ABC")" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericMethods.GenericTestMethodWithOneTypeParameter<Double>(5.0d,2.0d,"ABC")" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="GenericTestMethodWithTwoTypeParameters" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericMethods.GenericTestMethodWithTwoTypeParameters<Int32,Double>(5,2.0d,"ABC")" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericMethods.GenericTestMethodWithTwoTypeParameters<Double,Int64>(5.0d,2L,"ABC")" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericMethods.GenericTestMethodWithTwoTypeParameters<Int32,Int32>(5,2,"ABC")" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericMethods.GenericTestMethodWithTwoTypeParameters<Double,Double>(5.0d,2.0d,"ABC")" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="GenericTestMethodWithTwoTypeParameters_Reversed" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericMethods.GenericTestMethodWithTwoTypeParameters_Reversed<Int32,Int32>(5,2,"ABC")" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericMethods.GenericTestMethodWithTwoTypeParameters_Reversed<Double,Double>(5.0d,2.0d,"ABC")" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericMethods.GenericTestMethodWithTwoTypeParameters_Reversed<Double,Int32>(5,2.0d,"ABC")" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Core.Tests.Generic.SimpleGenericMethods.GenericTestMethodWithTwoTypeParameters_Reversed<Int64,Double>(5.0d,2L,"ABC")" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="GenericFixture" name="TypeParameterUsedWithTestMethod<T>" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="TypeParameterUsedWithTestMethod<Double>" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <categories>
+ <category name="Generics" />
+ </categories>
+ <results>
+ <test-suite type="ParameterizedTest" name="TestMyArgType" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.Generic.TypeParameterUsedWithTestMethod<Double>.TestMyArgType(5)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.Generic.TypeParameterUsedWithTestMethod<Double>.TestMyArgType(1.23d)" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="IgnoreFixture" executed="True" result="Success" success="True" time="0.033" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.IgnoreFixture.IgnoreTakesPrecedenceOverExpectedException" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.IgnoreFixture.IgnoreThrowsIgnoreException" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.IgnoreFixture.IgnoreWithUserMessage" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.IgnoreFixture.IgnoreWithUserMessage_ArrayOfArgs" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.IgnoreFixture.IgnoreWithUserMessage_OneArg" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.IgnoreFixture.IgnoreWithUserMessage_ThreeArgs" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.IgnoreFixture.IgnoreWorksForTestCase" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.IgnoreFixture.IgnoreWorksForTestSuite" executed="True" result="Success" success="True" time="0.004" asserts="3" />
+ <test-case name="NUnit.Core.Tests.IgnoreFixture.IgnoreWorksFromSetUp" executed="True" result="Success" success="True" time="0.005" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="LegacySuiteTests" executed="True" result="Success" success="True" time="0.080" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.LegacySuiteTests.SetUpAndTearDownAreCalled" executed="True" result="Success" success="True" time="0.005" asserts="3" />
+ <test-case name="NUnit.Core.Tests.LegacySuiteTests.SuitePropertyWithInvalidType" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.LegacySuiteTests.SuiteReturningFixtures" executed="True" result="Success" success="True" time="0.035" asserts="3" />
+ <test-case name="NUnit.Core.Tests.LegacySuiteTests.SuiteReturningFixtureWithArguments" executed="True" result="Success" success="True" time="0.005" asserts="3" />
+ <test-case name="NUnit.Core.Tests.LegacySuiteTests.SuiteReturningTestSuite" executed="True" result="Success" success="True" time="0.011" asserts="3" />
+ <test-case name="NUnit.Core.Tests.LegacySuiteTests.SuiteReturningTypes" executed="True" result="Success" success="True" time="0.010" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="MaxTimeTests" executed="True" result="Success" success="True" time="0.088" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.MaxTimeTests.ErrorReport" executed="True" result="Success" success="True" time="0.000" asserts="0">
+ <properties>
+ <property name="MaxTime" value="1000" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.MaxTimeTests.ErrorReportHasPriorityOverMaxTime" executed="True" result="Success" success="True" time="0.023" asserts="3" />
+ <test-case name="NUnit.Core.Tests.MaxTimeTests.FailureReport" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <properties>
+ <property name="MaxTime" value="1000" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.MaxTimeTests.FailureReportHasPriorityOverMaxTime" executed="True" result="Success" success="True" time="0.024" asserts="3" />
+ <test-case name="NUnit.Core.Tests.MaxTimeTests.MaxTimeExceeded" executed="True" result="Success" success="True" time="0.023" asserts="2" />
+ <test-case name="NUnit.Core.Tests.MaxTimeTests.MaxTimeNotExceeded" executed="True" result="Success" success="True" time="0.000" asserts="0">
+ <properties>
+ <property name="MaxTime" value="1000" />
+ </properties>
+ </test-case>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NameFilterTest" executed="True" result="Success" success="True" time="0.084" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.NameFilterTest.ExplicitTestCaseDoesNotMatchWhenNotSelectedDirectly" executed="True" result="Success" success="True" time="0.007" asserts="1" />
+ <test-case name="NUnit.Core.Tests.NameFilterTest.ExplicitTestCaseMatchesWhenSelectedDirectly" executed="True" result="Success" success="True" time="0.006" asserts="2" />
+ <test-case name="NUnit.Core.Tests.NameFilterTest.ExplicitTestSuiteDoesNotMatchWhenNotSelectedDirectly" executed="True" result="Success" success="True" time="0.006" asserts="2" />
+ <test-case name="NUnit.Core.Tests.NameFilterTest.ExplicitTestSuiteMatchesWhenSelectedDirectly" executed="True" result="Success" success="True" time="0.009" asserts="3" />
+ <test-case name="NUnit.Core.Tests.NameFilterTest.HighLevelSuite" executed="True" result="Success" success="True" time="0.006" asserts="3" />
+ <test-case name="NUnit.Core.Tests.NameFilterTest.MultipleNameMatch" executed="True" result="Success" success="True" time="0.006" asserts="3" />
+ <test-case name="NUnit.Core.Tests.NameFilterTest.SingleNameMatch" executed="True" result="Success" success="True" time="0.006" asserts="4" />
+ <test-case name="NUnit.Core.Tests.NameFilterTest.SuiteNameMatch" executed="True" result="Success" success="True" time="0.006" asserts="3" />
+ <test-case name="NUnit.Core.Tests.NameFilterTest.TestDoesNotMatch" executed="True" result="Success" success="True" time="0.006" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NamespaceAssemblyTests" executed="True" result="Success" success="True" time="0.134" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.NamespaceAssemblyTests.Hierarchy" executed="True" result="Success" success="True" time="0.044" asserts="17" />
+ <test-case name="NUnit.Core.Tests.NamespaceAssemblyTests.LoadTestFixtureFromAssembly" executed="True" result="Success" success="True" time="0.019" asserts="1" />
+ <test-case name="NUnit.Core.Tests.NamespaceAssemblyTests.NoNamespaceInAssembly" executed="True" result="Success" success="True" time="0.016" asserts="5" />
+ <test-case name="NUnit.Core.Tests.NamespaceAssemblyTests.TestRoot" executed="True" result="Success" success="True" time="0.044" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PairwiseTest" executed="True" result="Success" success="True" time="0.033" asserts="0">
+ <results>
+ <test-suite type="ParameterizedTest" name="Test" executed="True" result="Success" success="True" time="0.032" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.PairwiseTest.Test 2x4" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest.Test 2x2x2" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest.Test 3x2x2" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest.Test 3x2x2x2" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest.Test 3x2x2x2x2" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest.Test 3x2x2x2x2x2" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest.Test 3x3x3" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest.Test 4x4x4" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest.Test 5x5x5" executed="True" result="Success" success="True" time="0.003" asserts="3" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PairwiseTest+LiveTest" executed="True" result="Success" success="True" time="0.023" asserts="1">
+ <results>
+ <test-suite type="ParameterizedTest" name="Test" executed="True" result="Success" success="True" time="0.022" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.PairwiseTest+LiveTest.Test("a","-","x")" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest+LiveTest.Test("b","+","y")" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest+LiveTest.Test("c","+","x")" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest+LiveTest.Test("b","-","x")" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest+LiveTest.Test("a","-","y")" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest+LiveTest.Test("c","-","y")" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.PairwiseTest+LiveTest.Test("a","+","x")" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedFixture" name="ParameterizedTestFixture" executed="True" result="Success" success="True" time="0.019" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="ParameterizedTestFixture("hello","hello","goodbye")" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixture("hello","hello","goodbye").TestEquality" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixture("hello","hello","goodbye").TestInequality" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ParameterizedTestFixture("zip","zip")" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixture("zip","zip").TestEquality" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixture("zip","zip").TestInequality" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ParameterizedTestFixture(42,42,99)" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixture(42,42,99).TestEquality" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixture(42,42,99).TestInequality" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ParameterizedTestFixtureNamingTests" executed="True" result="Success" success="True" time="0.039" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureNamingTests.FixtureInstancesAreNamedCorrectly" executed="True" result="Success" success="True" time="0.008" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureNamingTests.MethodWithoutParamsIsNamedCorrectly" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureNamingTests.MethodWithParamsIsNamedCorrectly" executed="True" result="Success" success="True" time="0.005" asserts="3" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureNamingTests.SuiteHasCorrectNumberOfInstances" executed="True" result="Success" success="True" time="0.005" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureNamingTests.TopLevelSuiteIsNamedCorrectly" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ParameterizedTestFixtureTests" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureTests.CanSpecifyCategory" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureTests.CanSpecifyMultipleCategories" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedFixture" name="ParameterizedTestFixtureWithDataSources" executed="True" result="Success" success="True" time="0.035" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="ParameterizedTestFixtureWithDataSources(42)" executed="True" result="Success" success="True" time="0.034" asserts="0">
+ <results>
+ <test-suite type="ParameterizedTest" name="CanAccessTestCaseSource" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanAccessTestCaseSource(6,7)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanAccessTestCaseSource(3,14)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanAccessValueSource" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanAccessValueSource(1)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanAccessValueSource(2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanAccessValueSource(3)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanGenerateDataFromParameter" executed="True" result="Success" success="True" time="0.020" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanGenerateDataFromParameter(1,42)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanGenerateDataFromParameter(2,21)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanGenerateDataFromParameter(3,14)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanGenerateDataFromParameter(6,7)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanGenerateDataFromParameter(7,6)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanGenerateDataFromParameter(14,3)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanGenerateDataFromParameter(21,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithDataSources(42).CanGenerateDataFromParameter(42,1)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedFixture" name="ParameterizedTestFixtureWithNullArguments" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="ParameterizedTestFixtureWithNullArguments("A",null)" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithNullArguments("A",null).TestMethod" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ParameterizedTestFixtureWithNullArguments(null,"A")" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithNullArguments(null,"A").TestMethod" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ParameterizedTestFixtureWithNullArguments(null,null)" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ParameterizedTestFixtureWithNullArguments(null,null).TestMethod" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PlatformDetectionTests" executed="True" result="Success" success="True" time="0.086" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.ArrayOfPlatforms" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectExactVersion" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectMono10" executed="True" result="Success" success="True" time="0.002" asserts="8" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectMono20" executed="True" result="Success" success="True" time="0.000" asserts="8" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectNet10" executed="True" result="Success" success="True" time="0.001" asserts="8" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectNet11" executed="True" result="Success" success="True" time="0.000" asserts="8" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectNet20" executed="True" result="Success" success="True" time="0.001" asserts="8" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectNet40" executed="True" result="Success" success="True" time="0.000" asserts="9" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectNetCF" executed="True" result="Success" success="True" time="0.000" asserts="9" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectNT3" executed="True" result="Success" success="True" time="0.002" asserts="18" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectNT4" executed="True" result="Success" success="True" time="0.000" asserts="18" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectSSCLI" executed="True" result="Success" success="True" time="0.001" asserts="8" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectUnixUnderMicrosoftDotNet" executed="True" result="Success" success="True" time="0.000" asserts="20" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectUnixUnderMono" executed="False" result="Skipped">
+ <reason>
+ <message><![CDATA[Not supported on Net]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectVista" executed="True" result="Success" success="True" time="0.001" asserts="17" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectWin2003Server" executed="True" result="Success" success="True" time="0.000" asserts="17" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectWin2008ServerOriginal" executed="True" result="Success" success="True" time="0.000" asserts="17" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectWin2008ServerR2" executed="True" result="Success" success="True" time="0.001" asserts="16" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectWin2K" executed="True" result="Success" success="True" time="0.000" asserts="17" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectWin95" executed="True" result="Success" success="True" time="0.001" asserts="18" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectWin98" executed="True" result="Success" success="True" time="0.001" asserts="18" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectWinCE" executed="True" result="Success" success="True" time="0.000" asserts="19" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectWindows7" executed="True" result="Success" success="True" time="0.000" asserts="17" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectWinMe" executed="True" result="Success" success="True" time="0.001" asserts="18" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectWinXP" executed="True" result="Success" success="True" time="0.000" asserts="17" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.DetectWinXPProfessionalX64" executed="True" result="Success" success="True" time="0.001" asserts="17" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.PlatformAttribute_Exclude" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.PlatformAttribute_Include" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.PlatformAttribute_IncludeAndExclude" executed="True" result="Success" success="True" time="0.001" asserts="7" />
+ <test-case name="NUnit.Core.Tests.PlatformDetectionTests.PlatformAttribute_InvalidPlatform" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PropertyAttributeTests" executed="True" result="Success" success="True" time="0.026" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.PropertyAttributeTests.CanDeriveFromPropertyAttribute" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Core.Tests.PropertyAttributeTests.PropertiesWithNumericValues" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.PropertyAttributeTests.PropertyWithStringValue" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.PropertyAttributeTests.PropertyWorksOnFixtures" executed="True" result="Success" success="True" time="0.006" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ReflectTests" executed="True" result="Success" success="True" time="0.050" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ReflectTests.CanDetectAttributes" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.CanDetectInheritedAttributes" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.Construct" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.GetAttribute" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.GetAttributes" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.GetConstructor" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.GetInheritedAttribute" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.GetInheritedAttributes" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.GetMethodsWithAttribute" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.GetNamedMethod" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.GetNamedMethodWithArgs" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.GetNamedProperty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.GetPropertyValue" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.GetPropertyWithAttribute" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.HasInterface" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.InheritsFrom" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ReflectTests.InvokeMethod" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RemoteRunnerTests" executed="True" result="Success" success="True" time="0.651" asserts="1">
+ <results>
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.CheckRunnerID" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.CountTestCases" executed="True" result="Success" success="True" time="0.046" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.CountTestCasesAcrossMultipleAssemblies" executed="True" result="Success" success="True" time="0.056" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.LoadAndReloadAssembly" executed="True" result="Success" success="True" time="0.087" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.LoadAssemblyWithFixture" executed="True" result="Success" success="True" time="0.019" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.LoadAssemblyWithoutNamespaces" executed="True" result="Success" success="True" time="0.043" asserts="4" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.LoadAssemblyWithSuite" executed="True" result="Success" success="True" time="0.014" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.LoadMultipleAssemblies" executed="True" result="Success" success="True" time="0.055" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.LoadMultipleAssembliesWithFixture" executed="True" result="Success" success="True" time="0.032" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.LoadMultipleAssembliesWithSuite" executed="True" result="Success" success="True" time="0.026" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.RunAssembly" executed="True" result="Success" success="True" time="0.052" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.RunAssemblyUsingBeginAndEndRun" executed="True" result="Success" success="True" time="0.049" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.RunMultipleAssemblies" executed="True" result="Success" success="True" time="0.064" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RemoteRunnerTests.BasicRunnerTests.RunMultipleAssembliesUsingBeginAndEndRun" executed="True" result="Success" success="True" time="0.063" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RepeatedTestFixture" executed="True" result="Success" success="True" time="0.037" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.RepeatedTestFixture.CategoryWorksWithRepeatedTest" executed="True" result="Success" success="True" time="0.005" asserts="3" />
+ <test-case name="NUnit.Core.Tests.RepeatedTestFixture.IgnoreWorksWithRepeatedTest" executed="True" result="Success" success="True" time="0.005" asserts="3" />
+ <test-case name="NUnit.Core.Tests.RepeatedTestFixture.RepeatFailOnFirst" executed="True" result="Success" success="True" time="0.005" asserts="4" />
+ <test-case name="NUnit.Core.Tests.RepeatedTestFixture.RepeatFailOnThird" executed="True" result="Success" success="True" time="0.004" asserts="4" />
+ <test-case name="NUnit.Core.Tests.RepeatedTestFixture.RepeatSuccess" executed="True" result="Success" success="True" time="0.005" asserts="6" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RuntimeFrameworkTests" executed="True" result="Success" success="True" time="0.247" asserts="0">
+ <results>
+ <test-suite type="ParameterizedTest" name="CanCreateNewRuntimeFramework" executed="True" result="Success" success="True" time="0.057" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Net-1.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Net-1.0.3705>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Net-1.1>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Net-1.1.4322>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Net-2.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Net-2.0.40607>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Net-2.0.50727>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Net-3.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Net-3.5>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Net-4.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Net-0.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Mono-1.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Mono-2.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Mono-2.0.50727>)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Mono-3.5>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Mono-0.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Any-1.1>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Any-2.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Any-2.0.50727>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Any-3.5>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Any-4.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanCreateNewRuntimeFramework(<Any-0.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanDisplayFrameworkAsString" executed="True" result="Success" success="True" time="0.055" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Net-1.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Net-1.0.3705>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Net-1.1>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Net-1.1.4322>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Net-2.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Net-2.0.40607>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Net-2.0.50727>)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Net-3.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Net-3.5>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Net-4.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Net-0.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Mono-1.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Mono-2.0>)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Mono-2.0.50727>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Mono-3.5>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Mono-0.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Any-1.1>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Any-2.0>)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Any-2.0.50727>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Any-3.5>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Any-4.0>)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanDisplayFrameworkAsString(<Any-0.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanGetCurrentFramework" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanListAvailableFrameworks" executed="True" result="Success" success="True" time="0.008" asserts="2" />
+ <test-suite type="ParameterizedTest" name="CanMatchRuntimes" executed="True" result="Success" success="True" time="0.040" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(net-2.0,net-2.0)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(net-2.0,net-2.0.50727)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(net-2.0.50727,net-2.0)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(net-2.0.50727,net-2.0)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(net-3.5,net-2.0)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(net-2.0,mono-2.0)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(net-2.0,net-1.1)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(net-2.0.50727,net-2.0.40607)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(mono-1.1,mono-1.0)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(mono-2.0,v2.0)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(v2.0,mono-2.0)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(v2.0,v2.0)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(v2.0,v4.0)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(net,net-2.0)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(net-2.0,net)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(any,net-2.0)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanMatchRuntimes(net-2.0,any)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanParseRuntimeFramework" executed="True" result="Success" success="True" time="0.052" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Net-1.0>)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Net-1.0.3705>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Net-1.1>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Net-1.1.4322>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Net-2.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Net-2.0.40607>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Net-2.0.50727>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Net-3.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Net-3.5>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Net-4.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Net-0.0>)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Mono-1.0>)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Mono-2.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Mono-2.0.50727>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Mono-3.5>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Mono-0.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Any-1.1>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Any-2.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Any-2.0.50727>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Any-3.5>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Any-4.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CanParseRuntimeFramework(<Any-0.0>)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CurrentFrameworkHasBuildSpecified" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.RuntimeFrameworkTests.CurrentFrameworkMustBeAvailable" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SerializationBug" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.SerializationBug.SaveAndLoad" executed="True" result="Success" success="True" time="0.004" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SetCultureAttributeTests" executed="True" result="Success" success="True" time="0.020" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.SetCultureAttributeTests.SetBothCulturesToFrench" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SetCultureAttributeTests.SetBothCulturesToFrenchCanadian" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SetCultureAttributeTests.SetBothCulturesToRussian" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SetCultureAttributeTests.SetMixedCulturesToFrenchAndUIFrenchCanadian" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SetCultureAttributeTests.SetMixedCulturesToRussianAndUIEnglishUS" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SetCultureAttributeTests.SetUICultureOnlyToFrench" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SetCultureAttributeTests.SetUICultureOnlyToFrenchCanadian" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SetCultureAttributeTests.SetUICultureOnlyToRussian" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SetCultureAttributeTests+NestedBehavior" executed="True" result="Success" success="True" time="0.004" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.SetCultureAttributeTests+NestedBehavior.InheritedRussian" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SetCultureAttributeTests+NestedBehavior.InheritedRussianWithUIFrench" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SetUpFixtureTests" executed="True" result="Success" success="True" time="1.069" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.SetUpFixtureTests.AssemblySetUpFixtureReplacesAssemblyNodeInTree" executed="True" result="Success" success="True" time="0.465" asserts="4" />
+ <test-case name="NUnit.Core.Tests.SetUpFixtureTests.AssemblySetupFixtureWrapsExecutionOfTest" executed="True" result="Success" success="True" time="0.448" asserts="5" />
+ <test-case name="NUnit.Core.Tests.SetUpFixtureTests.NamespaceSetUpFixtureReplacesNamespaceNodeInTree" executed="True" result="Success" success="True" time="0.020" asserts="14" />
+ <test-case name="NUnit.Core.Tests.SetUpFixtureTests.NamespaceSetUpFixtureWrapsExecutionOfSingleTest" executed="True" result="Success" success="True" time="0.020" asserts="8" />
+ <test-case name="NUnit.Core.Tests.SetUpFixtureTests.NamespaceSetUpFixtureWrapsExecutionOfTwoTests" executed="True" result="Success" success="True" time="0.024" asserts="13" />
+ <test-case name="NUnit.Core.Tests.SetUpFixtureTests.NamespaceSetUpFixtureWrapsNestedNamespaceSetUpFixture" executed="True" result="Success" success="True" time="0.024" asserts="15" />
+ <test-case name="NUnit.Core.Tests.SetUpFixtureTests.NamespaceSetUpMethodsMayBeStatic" executed="True" result="Success" success="True" time="0.024" asserts="8" />
+ <test-case name="NUnit.Core.Tests.SetUpFixtureTests.WithTwoSetUpFixtuesOnlyOneIsUsed" executed="True" result="Success" success="True" time="0.021" asserts="8" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SetUpTest" executed="True" result="Success" success="True" time="0.052" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.SetUpTest.BaseSetUpIsCalledFirstTearDownLast" executed="True" result="Success" success="True" time="0.004" asserts="6" />
+ <test-case name="NUnit.Core.Tests.SetUpTest.CheckInheritedSetUpAndTearDownAreCalled" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SetUpTest.CheckOverriddenSetUpAndTearDownAreNotCalled" executed="True" result="Success" success="True" time="0.004" asserts="4" />
+ <test-case name="NUnit.Core.Tests.SetUpTest.MakeSureSetUpAndTearDownAreCalled" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SetUpTest.MultipleSetUpAndTearDownMethodsAreCalled" executed="True" result="Success" success="True" time="0.004" asserts="5" />
+ <test-case name="NUnit.Core.Tests.SetUpTest.SetUpAndTearDownCounter" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SetUpTest.SetupRecordsOriginalExceptionThownByTestCase" executed="True" result="Success" success="True" time="0.004" asserts="4" />
+ <test-case name="NUnit.Core.Tests.SetUpTest.TearDownRecordsOriginalExceptionThownByTestCase" executed="True" result="Success" success="True" time="0.004" asserts="4" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SetUpTest+SetupCallDerived" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.SetUpTest+SetupCallDerived.AssertCount" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SimpleNameFilterTests" executed="True" result="Success" success="True" time="0.082" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.SimpleNameFilterTests.ExplicitTestCaseDoesNotMatchWhenNotSelectedDirectly" executed="True" result="Success" success="True" time="0.007" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SimpleNameFilterTests.ExplicitTestCaseMatchesWhenSelectedDirectly" executed="True" result="Success" success="True" time="0.006" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SimpleNameFilterTests.ExplicitTestSuiteDoesNotMatchWhenNotSelectedDirectly" executed="True" result="Success" success="True" time="0.006" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SimpleNameFilterTests.ExplicitTestSuiteMatchesWhenSelectedDirectly" executed="True" result="Success" success="True" time="0.006" asserts="3" />
+ <test-case name="NUnit.Core.Tests.SimpleNameFilterTests.HighLevelSuite" executed="True" result="Success" success="True" time="0.006" asserts="3" />
+ <test-case name="NUnit.Core.Tests.SimpleNameFilterTests.MultipleNameMatch" executed="True" result="Success" success="True" time="0.007" asserts="3" />
+ <test-case name="NUnit.Core.Tests.SimpleNameFilterTests.SingleNameMatch" executed="True" result="Success" success="True" time="0.006" asserts="4" />
+ <test-case name="NUnit.Core.Tests.SimpleNameFilterTests.SuiteNameMatch" executed="True" result="Success" success="True" time="0.006" asserts="3" />
+ <test-case name="NUnit.Core.Tests.SimpleNameFilterTests.TestDoesNotMatch" executed="True" result="Success" success="True" time="0.006" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SimpleTestRunnerTests" executed="True" result="Success" success="True" time="0.625" asserts="1">
+ <results>
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.CheckRunnerID" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.CountTestCases" executed="True" result="Success" success="True" time="0.043" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.CountTestCasesAcrossMultipleAssemblies" executed="True" result="Success" success="True" time="0.058" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.LoadAndReloadAssembly" executed="True" result="Success" success="True" time="0.082" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.LoadAssemblyWithFixture" executed="True" result="Success" success="True" time="0.018" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.LoadAssemblyWithoutNamespaces" executed="True" result="Success" success="True" time="0.043" asserts="4" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.LoadAssemblyWithSuite" executed="True" result="Success" success="True" time="0.013" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.LoadMultipleAssemblies" executed="True" result="Success" success="True" time="0.055" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.LoadMultipleAssembliesWithFixture" executed="True" result="Success" success="True" time="0.029" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.LoadMultipleAssembliesWithSuite" executed="True" result="Success" success="True" time="0.025" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.RunAssembly" executed="True" result="Success" success="True" time="0.047" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.RunAssemblyUsingBeginAndEndRun" executed="True" result="Success" success="True" time="0.046" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.RunMultipleAssemblies" executed="True" result="Success" success="True" time="0.061" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SimpleTestRunnerTests.BasicRunnerTests.RunMultipleAssembliesUsingBeginAndEndRun" executed="True" result="Success" success="True" time="0.062" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="StackOverflowTestFixture" executed="False" result="Skipped">
+ <reason>
+ <message><![CDATA[Cannot handle StackOverflowException in managed code]]></message>
+ </reason>
+ <results>
+ <test-case name="NUnit.Core.Tests.StackOverflowTestFixture.SimpleOverflow" executed="False" result="Skipped">
+ <reason>
+ <message><![CDATA[Cannot handle StackOverflowException in managed code]]></message>
+ </reason>
+ </test-case>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SuiteBuilderTests" executed="True" result="Success" success="True" time="1.703" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests.DiscoverSuite" executed="True" result="Success" success="True" time="0.017" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests.FileNotFound" executed="True" result="Success" success="True" time="0.002" asserts="0" />
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests.FixtureNotFound" executed="True" result="Success" success="True" time="0.015" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests.InvalidAssembly" executed="True" result="Success" success="True" time="0.007" asserts="0" />
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests.LoadAssembly" executed="True" result="Success" success="True" time="0.529" asserts="3" />
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests.LoadAssemblyWithoutNamespaces" executed="True" result="Success" success="True" time="0.529" asserts="3" />
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests.LoadFixture" executed="True" result="Success" success="True" time="0.021" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests.LoadNamespaceAsSuite" executed="True" result="Success" success="True" time="0.512" asserts="3" />
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests.LoadSuite" executed="True" result="Success" success="True" time="0.024" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests.WrongReturnTypeSuite" executed="True" result="Success" success="True" time="0.015" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SuiteBuilderTests_Multiple" executed="True" result="Success" success="True" time="0.246" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests_Multiple.BuildSuite" executed="True" result="Success" success="True" time="0.055" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests_Multiple.LoadFixture" executed="True" result="Success" success="True" time="0.078" asserts="2" />
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests_Multiple.RootNode" executed="True" result="Success" success="True" time="0.051" asserts="1" />
+ <test-case name="NUnit.Core.Tests.SuiteBuilderTests_Multiple.TestCaseCount" executed="True" result="Success" success="True" time="0.051" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestAttributeFixture" executed="True" result="Success" success="True" time="0.036" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestAttributeFixture.Description" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestAttributeFixture.DescriptionInResult" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestAttributeFixture.FixtureDescription" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestAttributeFixture.FixtureDescriptionInResult" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestAttributeFixture.NoDescription" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestAttributeFixture.ReflectionTest" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestAttributeFixture.SeparateDescriptionAttribute" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestAttributeFixture.SeparateDescriptionInResult" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestCaseAttributeTests" executed="True" result="Success" success="True" time="0.151" asserts="0">
+ <results>
+ <test-suite type="ParameterizedTest" name="ArgumentsAreCoalescedInObjectArray" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.ArgumentsAreCoalescedInObjectArray("a","b")" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ArgumentsOfDifferentTypeAreCoalescedInObjectArray" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.ArgumentsOfDifferentTypeAreCoalescedInObjectArray(1,"b")" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertDoubleToDecimal" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanConvertDoubleToDecimal(2.2m,3.3m)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertIntToDecimal" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanConvertIntToDecimal(5m,2m)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertIntToDouble" executed="True" result="Success" success="True" time="0.000" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanConvertIntToDouble(2,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertSmallIntsToByte" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanConvertSmallIntsToByte(5,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertSmallIntsToSByte" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanConvertSmallIntsToSByte(5,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertSmallIntsToShort" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanConvertSmallIntsToShort(5,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertStringToDateTime" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanConvertStringToDateTime(10/12/1942 00:00:00)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanConvertStringToDecimal" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanConvertStringToDecimal(2.2m,3.3m)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanIgnoreIndividualTestCase" executed="True" result="Success" success="True" time="0.003" asserts="3" />
+ <test-suite type="ParameterizedTest" name="CanPassArrayAsArgument" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanPassArrayAsArgument("a","b")" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanPassNullAsArgument" executed="True" result="Success" success="True" time="0.000" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanPassNullAsArgument(null,null)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanPassNullAsSoleArgument" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanPassNullAsSoleArgument(null)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanPassObjectArrayAsFirstArgument" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanPassObjectArrayAsFirstArgument(1,"two",3.0d)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanPassObjectArrayAsFirstArgument("zip")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanSpecifyCategory" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanSpecifyDescription" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-suite type="ParameterizedTest" name="CanSpecifyExceptionMessage" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanSpecifyExceptionMessage(42)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="CanSpecifyExceptionMessageAndMatchType" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanSpecifyExceptionMessageAndMatchType(42)" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanSpecifyExpectedException" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanSpecifyExpectedException_NoneThrown" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanSpecifyExpectedException_WrongException" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanSpecifyExpectedException_WrongMessage" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanSpecifyMultipleCategories" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.CanSpecifyTestName" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.ConversionOverflowMakesTestNonRunnable" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-suite type="ParameterizedTest" name="ExpectedResultCanBeNull" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.ExpectedResultCanBeNull()" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="HandlesParamsArrayAsLastArgument" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.HandlesParamsArrayAsLastArgument("a","b","c","d")" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="HandlesParamsArrayAsSoleArgument" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.HandlesParamsArrayAsSoleArgument("a","b")" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.IgnoreTakesPrecedenceOverExpectedException" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-suite type="ParameterizedTest" name="IntegerDivisionWithResultCheckedByNUnit" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.IntegerDivisionWithResultCheckedByNUnit(12,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.IntegerDivisionWithResultCheckedByNUnit(12,3)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.IntegerDivisionWithResultCheckedByNUnit(12,4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.IntegerDivisionWithResultCheckedByNUnit(12,0)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.DivisionByZeroThrowsException" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="IntegerDivisionWithResultPassedToTest" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.IntegerDivisionWithResultPassedToTest(12,2,6)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.IntegerDivisionWithResultPassedToTest(12,0,0)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.IntegerDivisionWithResultPassedToTest(12,3,4)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.IntegerDivisionWithResultPassedToTest(12,4,3)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestCaseAttributeTests.IntegerDivisionWithResultPassedToTest(12,0,0)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestCaseResultFixture" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseResultFixture.TestCaseDefault" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseResultFixture.TestCaseFailure" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Core.Tests.TestCaseResultFixture.TestCaseNotRun" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestCaseResultFixture.TestCaseSuccess" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestCaseSourceTests" executed="True" result="Success" success="True" time="0.145" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.CanIgnoreIndividualTestCases" executed="True" result="Success" success="True" time="0.003" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.CanSpecifyExpectedException" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.CanSpecifyExpectedException_NoneThrown" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.CanSpecifyExpectedException_WrongException" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-suite type="ParameterizedTest" name="ExpectedResultCanBeNull" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.ExpectedResultCanBeNull()" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.HandlesExceptionInTestCaseSource" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.IgnoreTakesPrecedenceOverExpectedException" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-suite type="ParameterizedTest" name="MethodTakingTwoStringArrays" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.MethodTakingTwoStringArrays(System.String[],System.String[])" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceCanBeInstanceField" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceCanBeInstanceField("InstanceField")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceCanBeInstanceMethod" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceCanBeInstanceMethod("InstanceMethod")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceCanBeInstanceProperty" executed="True" result="Success" success="True" time="0.000" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceCanBeInstanceProperty("InstanceProperty")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceCanBeStaticField" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceCanBeStaticField("StaticField")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceCanBeStaticMethod" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceCanBeStaticMethod("StaticMethod")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceCanBeStaticProperty" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceCanBeStaticProperty("StaticProperty")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceIsInvokedWithCorrectCurrentDirectory" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceIsInvokedWithCorrectCurrentDirectory(True)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceMayBeInAnotherClass" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <categories>
+ <category name="Top" />
+ </categories>
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.ThisOneShouldThrow" description="Demonstrates use of ExpectedException" executed="True" result="Success" success="True" time="0.000" asserts="0">
+ <categories>
+ <category name="Junk" />
+ </categories>
+ <properties>
+ <property name="MyProp" value="zip" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayBeInAnotherClass(100,20,5)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayBeInAnotherClass(100,4,25)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceMayBeInAnotherClassWithReturn" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TC1" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TC2" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TC3" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceMayReturnArgumentsAsIntArray" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayReturnArgumentsAsIntArray(12,3,4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayReturnArgumentsAsIntArray(12,4,3)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayReturnArgumentsAsIntArray(12,6,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceMayReturnArgumentsAsObjectArray" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayReturnArgumentsAsObjectArray(12,3,4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayReturnArgumentsAsObjectArray(12,4,3)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayReturnArgumentsAsObjectArray(12,6,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceMayReturnArgumentsAsParamSet" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayReturnArgumentsAsParamSet(24,3)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayReturnArgumentsAsParamSet(24,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="SourceMayReturnSinglePrimitiveArgumentAlone" executed="True" result="Success" success="True" time="0.012" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayReturnSinglePrimitiveArgumentAlone(2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayReturnSinglePrimitiveArgumentAlone(4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayReturnSinglePrimitiveArgumentAlone(6)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.SourceMayReturnSinglePrimitiveArgumentAlone(8)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="TestAttributeIsOptional" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TestAttributeIsOptional(12,3,4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TestAttributeIsOptional(12,4,3)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TestAttributeIsOptional(12,6,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="TestMayUseMultipleSourceAttributes" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TestMayUseMultipleSourceAttributes(12,3,4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TestMayUseMultipleSourceAttributes(12,4,3)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TestMayUseMultipleSourceAttributes(12,6,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TestMayUseMultipleSourceAttributes(12,1,12)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TestMayUseMultipleSourceAttributes(12,2,6)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TestMayUseMultipleSourceAttributes(12,0,0)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="TestWithFourArguments" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TestWithFourArguments(12,3,4,0)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TestWithFourArguments(12,4,3,0)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestCaseSourceTests.TestWithFourArguments(12,5,2,2)" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestCaseTest" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestCaseTest.CreateIgnoredTestCase" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestCaseTest.LoadMethodCategories" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestCaseTest.RunIgnoredTestCase" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestConsole" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestConsole.ConsoleWrite" executed="True" result="Success" success="True" time="0.002" asserts="0" />
+ <test-case name="NUnit.Core.Tests.TestConsole.ConsoleWriteLine" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestContextTests" executed="True" result="Success" success="True" time="0.041" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestContextTests.CanAccessTestContextOnSeparateThread" executed="True" result="Success" success="True" time="0.003" asserts="1">
+ <properties>
+ <property name="RequiresThread" value="True" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.TestContextTests.TestCanAccessItsOwnFullName" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestContextTests.TestCanAccessItsOwnName" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestContextTests.TestCanAccessItsOwnProperties" executed="True" result="Success" success="True" time="0.000" asserts="1">
+ <properties>
+ <property name="Answer" value="42" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.TestContextTests.TestCanAccessTestDirectory" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestContextTests.TestCanAccessTestState_FailingTest" executed="True" result="Success" success="True" time="0.006" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestContextTests.TestCanAccessTestState_FailureInSetUp" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestContextTests.TestCanAccessTestState_IgnoredInSetUp" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestContextTests.TestCanAccessTestState_PassingTest" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestDelegateFixture" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestDelegateFixture.DelegateTest" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestExecutionContextTests" executed="True" result="Success" success="True" time="0.014" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestExecutionContextTests.SetAndRestoreCurrentCulture" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Core.Tests.TestExecutionContextTests.SetAndRestoreCurrentDirectory" executed="True" result="Success" success="True" time="0.002" asserts="5" />
+ <test-case name="NUnit.Core.Tests.TestExecutionContextTests.SetAndRestoreCurrentPrincipal" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Core.Tests.TestExecutionContextTests.SetAndRestoreCurrentUICulture" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestFixtureBuilderTests" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestFixtureBuilderTests.GoodSignature" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureBuilderTests.LoadCategories" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestFixtureExtension" executed="True" result="Success" success="True" time="0.079" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestFixtureExtension.CheckMultipleSetUp" executed="True" result="Success" success="True" time="0.019" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureExtension.DerivedTest" executed="True" result="Success" success="True" time="0.016" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureExtension.InheritSetup" executed="True" result="Success" success="True" time="0.018" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureExtension.InheritTearDown" executed="True" result="Success" success="True" time="0.018" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestFixtureTests" executed="True" result="Success" success="True" time="0.240" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunBadConstructor" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunConstructorWithArgsNotSupplied" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunFixtureSetupWithParameters" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunFixtureSetupWithReturnValue" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunFixtureTearDownWithParameters" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunFixtureTearDownWithReturnValue" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunGenericFixtureDerivedFromAbstractFixtureWithNoArgsProvided" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunGenericFixtureWithNoArgsProvided" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunGenericFixtureWithNoTestFixtureAttribute" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunIgnoredFixture" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunPrivateFixtureSetUp" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunPrivateFixtureTearDown" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunPrivateSetUp" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunPrivateTearDown" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunSetupWithParameters" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunSetupWithReturnValue" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunTearDownWithParameters" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CannotRunTearDownWithReturnValue" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunConstructorWithArgsSupplied" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunFixtureDerivedFromAbstractDerivedTestFixture" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunFixtureDerivedFromAbstractFixture" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunGenericFixtureDerivedFromAbstractFixtureWithArgsProvided" executed="True" result="Success" success="True" time="0.005" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunGenericFixtureWithProperArgsProvided" executed="True" result="Success" success="True" time="0.005" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunMultipleSetUp" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunMultipleTearDown" executed="True" result="Success" success="True" time="0.008" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunMultipleTestFixtureSetUp" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunMultipleTestFixtureTearDown" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunProtectedFixtureSetUp" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunProtectedFixtureTearDown" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunProtectedSetUp" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunProtectedTearDown" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunStaticFixture" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunStaticFixtureSetUp" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunStaticFixtureTearDown" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunStaticSetUp" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.CanRunStaticTearDown" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.ConstructFromDoublyNestedType" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.ConstructFromNestedType" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.ConstructFromStaticTypeWithoutTestFixtureAttribute" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.ConstructFromType" executed="True" result="Success" success="True" time="0.006" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.ConstructFromTypeWithoutNamespace" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.ConstructFromTypeWithoutTestFixtureAttribute" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestFixtureTests.FixtureInheritingTwoTestFixtureAttributesIsLoadedOnlyOnce" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestFixtureTests+InternalTestFixture" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestFixtureTests+InternalTestFixture.CanRunTestInInternalTestFixture" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestFixtureTests+PrivateTestFixture" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestFixtureTests+PrivateTestFixture.CanRunTestInPrivateTestFixture" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestFixtureTests+ProtectedTestFixture" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestFixtureTests+ProtectedTestFixture.CanRunTestInProtectedTestFixture" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestFrameworkTests" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestFrameworkTests.NUnitFrameworkIsKnownAndReferenced" executed="True" result="Success" success="True" time="0.002" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestIDTests" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestIDTests.ClonedTestIDsAreEqual" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestIDTests.DifferentTestIDsAreNotEqual" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestIDTests.DifferentTestIDsDisplayDifferentStrings" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestInfoTests" executed="True" result="Success" success="True" time="0.026" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestInfoTests.ConstructFromFixture" executed="True" result="Success" success="True" time="0.008" asserts="8" />
+ <test-case name="NUnit.Core.Tests.TestInfoTests.ConstructFromSuite" executed="True" result="Success" success="True" time="0.005" asserts="7" />
+ <test-case name="NUnit.Core.Tests.TestInfoTests.ConstructFromTestCase" executed="True" result="Success" success="True" time="0.006" asserts="7" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestMethodSignatureTests" executed="True" result="Success" success="True" time="0.272" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.InstanceTestMethodIsRunnable" executed="True" result="Success" success="True" time="0.012" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.PrivateTestMethodIsNotRunnable" executed="True" result="Success" success="True" time="0.010" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.ProtectedTestMethodIsNotRunnable" executed="True" result="Success" success="True" time="0.010" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.RunningTestsThroughFixtureGivesCorrectResults" executed="True" result="Success" success="True" time="0.014" asserts="6" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.StaticTestMethodIsRunnable" executed="True" result="Success" success="True" time="0.010" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.StaticTestMethodWithArgumentsNotProvidedIsNotRunnable" executed="True" result="Success" success="True" time="0.010" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.StaticTestMethodWithArgumentsProvidedIsRunnable" executed="True" result="Success" success="True" time="0.012" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.StaticTestMethodWithWrongArgumentTypesProvidedGivesError" executed="True" result="Success" success="True" time="0.011" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.StaticTestMethodWithWrongNumberOfArgumentsProvidedIsNotRunnable" executed="True" result="Success" success="True" time="0.011" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.TestMethodWithArgumentsNotProvidedIsNotRunnable" executed="True" result="Success" success="True" time="0.010" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.TestMethodWithArgumentsProvidedIsRunnable" executed="True" result="Success" success="True" time="0.010" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.TestMethodWithConvertibleArgumentsIsRunnable" executed="True" result="Success" success="True" time="0.010" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.TestMethodWithMultipleTestCasesExecutesMultipleTimes" executed="True" result="Success" success="True" time="0.010" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.TestMethodWithMultipleTestCasesUsesCorrectNames" executed="True" result="Success" success="True" time="0.013" asserts="7" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.TestMethodWithNonConvertibleArgumentsGivesError" executed="True" result="Success" success="True" time="0.011" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.TestMethodWithoutParametersWithArgumentsProvidedIsNotRunnable" executed="True" result="Success" success="True" time="0.010" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.TestMethodWithParamsArgumentIsRunnable" executed="True" result="Success" success="True" time="0.010" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.TestMethodWithReturnTypeIsNotRunnable" executed="True" result="Success" success="True" time="0.010" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.TestMethodWithWrongArgumentTypesProvidedGivesError" executed="True" result="Success" success="True" time="0.010" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestMethodSignatureTests.TestMethodWithWrongNumberOfArgumentsProvidedIsNotRunnable" executed="True" result="Success" success="True" time="0.010" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestNameTests" executed="True" result="Success" success="True" time="0.030" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestNameTests.CanCompareStrongTestNames" executed="True" result="Success" success="True" time="0.001" asserts="9" />
+ <test-case name="NUnit.Core.Tests.TestNameTests.CanCompareWeakAndStrongTestNames" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestNameTests.CanCompareWeakTestNames" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ <test-case name="NUnit.Core.Tests.TestNameTests.CanDisplayUniqueNames" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestNameTests.CanParseSimpleTestNames" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestNameTests.CanParseStrongTestNames" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestNameTests.CanParseWeakTestNames" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestNameTests.ClonedTestNamesAreEqual" executed="True" result="Success" success="True" time="0.000" asserts="6" />
+ <test-case name="NUnit.Core.Tests.TestNameTests.TestNamesWithDifferentRunnerIDsAreNotEqual" executed="True" result="Success" success="True" time="0.001" asserts="7" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestNodeTests" executed="True" result="Success" success="True" time="0.029" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestNodeTests.ConstructFromMultipleTests" executed="True" result="Success" success="True" time="0.009" asserts="8" />
+ <test-case name="NUnit.Core.Tests.TestNodeTests.ConstructFromSuite" executed="True" result="Success" success="True" time="0.007" asserts="3" />
+ <test-case name="NUnit.Core.Tests.TestNodeTests.ConstructFromTestCase" executed="True" result="Success" success="True" time="0.006" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestRunnerThreadTests" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestRunnerThreadTests.RunMultipleTests" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestRunnerThreadTests.RunNamedTest" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestRunnerThreadTests.RunTestSuite" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestSuiteTest" executed="True" result="Success" success="True" time="0.271" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.CanSortUsingExternalComparer" executed="True" result="Success" success="True" time="0.009" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.CountTestCasesFilteredByName" executed="True" result="Success" success="True" time="0.008" asserts="4" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.DefaultSortIsByName" executed="True" result="Success" success="True" time="0.008" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.ExcludingCategoryDoesNotRunExplicitTestCases" executed="True" result="Success" success="True" time="0.011" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.ExcludingCategoryDoesNotRunExplicitTestFixtures" executed="True" result="Success" success="True" time="0.053" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.InheritedTestCount" executed="True" result="Success" success="True" time="0.012" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.RunExplicitTestByCategory" executed="True" result="Success" success="True" time="0.008" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.RunExplicitTestByName" executed="True" result="Success" success="True" time="0.007" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.RunExplicitTestDirectly" executed="True" result="Success" success="True" time="0.008" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.RunNoTestSuite" executed="True" result="Success" success="True" time="0.007" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.RunSingleTest" executed="True" result="Success" success="True" time="0.014" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.RunSuiteByCategory" executed="True" result="Success" success="True" time="0.010" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.RunSuiteByName" executed="True" result="Success" success="True" time="0.010" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.RunTestByCategory" executed="True" result="Success" success="True" time="0.010" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.RunTestByName" executed="True" result="Success" success="True" time="0.009" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.RunTestExcludingCategory" executed="True" result="Success" success="True" time="0.009" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.RunTestsInFixture" executed="True" result="Success" success="True" time="0.009" asserts="6" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.SuiteRunInitialized" executed="True" result="Success" success="True" time="0.007" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TestSuiteTest.SuiteWithNoTests" executed="True" result="Success" success="True" time="0.008" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TheoryTests" executed="True" result="Success" success="True" time="0.070" asserts="0">
+ <results>
+ <test-suite type="Theory" name="ArrayWithDatapointsAttributeIsUsed" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TheoryTests.ArrayWithDatapointsAttributeIsUsed("xyz1")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TheoryTests.ArrayWithDatapointsAttributeIsUsed("xyz2")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TheoryTests.ArrayWithDatapointsAttributeIsUsed("xyz3")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Core.Tests.TheoryTests.BooleanArgumentsAreSuppliedAutomatically" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TheoryTests.EnumArgumentsAreSuppliedAutomatically" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-suite type="Theory" name="NullDatapointIsOK" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TheoryTests.NullDatapointIsOK(null)" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Core.Tests.TheoryTests.SimpleTestIgnoresDataPoints" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-suite type="Theory" name="SquareRootWithAllGoodValues" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TheoryTests.SquareRootWithAllGoodValues(12.0d)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TheoryTests.SquareRootWithAllGoodValues(4.0d)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TheoryTests.SquareRootWithAllGoodValues(9.0d)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="Theory" name="SquareRootWithOneBadValue" executed="True" result="Success" success="True" time="0.007" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TheoryTests.SquareRootWithOneBadValue(12.0d)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TheoryTests.SquareRootWithOneBadValue(-4.0d)" executed="True" result="Inconclusive" success="False" time="0.001" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: True
+ But was: False
+]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.TheoryTests.SquareRootWithOneBadValue(9.0d)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-case name="NUnit.Core.Tests.TheoryTests.TheoryFailsIfAllTestsAreInconclusive" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TheoryTests.TheoryWithDatapointsIsRunnable" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TheoryTests.TheoryWithNoArgumentsIsTreatedAsTest" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.TheoryTests.TheoryWithNoDatapointsIsNotRunnable" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TheoryTests+SqrtTests_DisplayResults" executed="True" result="Success" success="True" time="0.014" asserts="0">
+ <results>
+ <test-suite type="Theory" name="SqrtTimesItselfGivesOriginal" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TheoryTests+SqrtTests_DisplayResults.SqrtTimesItselfGivesOriginal(0.0d)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TheoryTests+SqrtTests_DisplayResults.SqrtTimesItselfGivesOriginal(1.0d)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TheoryTests+SqrtTests_DisplayResults.SqrtTimesItselfGivesOriginal(-1.0d)" executed="True" result="Inconclusive" success="False" time="0.001" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: True
+ But was: False
+]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.TheoryTests+SqrtTests_DisplayResults.SqrtTimesItselfGivesOriginal(double.MaxValue)" executed="True" result="Inconclusive" success="False" time="0.001" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: True
+ But was: False
+]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.TheoryTests+SqrtTests_DisplayResults.SqrtTimesItselfGivesOriginal(double.PositiveInfinity)" executed="True" result="Inconclusive" success="False" time="0.001" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: True
+ But was: False
+]]></message>
+ </reason>
+ </test-case>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ThreadedTestRunnerTests" executed="True" result="Success" success="True" time="0.588" asserts="1">
+ <results>
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.CheckRunnerID" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.CountTestCases" executed="True" result="Success" success="True" time="0.041" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.CountTestCasesAcrossMultipleAssemblies" executed="True" result="Success" success="True" time="0.051" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.LoadAndReloadAssembly" executed="True" result="Success" success="True" time="0.081" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.LoadAssemblyWithFixture" executed="True" result="Success" success="True" time="0.016" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.LoadAssemblyWithoutNamespaces" executed="True" result="Success" success="True" time="0.039" asserts="4" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.LoadAssemblyWithSuite" executed="True" result="Success" success="True" time="0.011" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.LoadMultipleAssemblies" executed="True" result="Success" success="True" time="0.053" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.LoadMultipleAssembliesWithFixture" executed="True" result="Success" success="True" time="0.026" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.LoadMultipleAssembliesWithSuite" executed="True" result="Success" success="True" time="0.021" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.RunAssembly" executed="True" result="Success" success="True" time="0.045" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.RunAssemblyUsingBeginAndEndRun" executed="True" result="Success" success="True" time="0.045" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.RunMultipleAssemblies" executed="True" result="Success" success="True" time="0.058" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ThreadedTestRunnerTests.BasicRunnerTests.RunMultipleAssembliesUsingBeginAndEndRun" executed="True" result="Success" success="True" time="0.058" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ThreadingTests" executed="True" result="Success" success="True" time="0.171" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TestOnSeparateThreadReportsAssertCountCorrectly" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TestWithInfiniteLoopTimesOut" executed="True" result="Success" success="True" time="0.061" asserts="2" />
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TestWithMTAThreadRunsInMTA" executed="True" result="Success" success="True" time="0.000" asserts="2">
+ <properties>
+ <property name="APARTMENT_STATE" value="MTA" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TestWithRequiresMTARunsInMTA" executed="True" result="Success" success="True" time="0.000" asserts="2">
+ <properties>
+ <property name="APARTMENT_STATE" value="MTA" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TestWithRequiresSTARunsInSTA" executed="True" result="Success" success="True" time="0.001" asserts="1">
+ <properties>
+ <property name="APARTMENT_STATE" value="STA" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TestWithRequiresThreadRunsInSeparateThread" executed="True" result="Success" success="True" time="0.001" asserts="1">
+ <properties>
+ <property name="RequiresThread" value="True" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TestWithRequiresThreadRunsSetUpAndTestOnSameThread" executed="True" result="Success" success="True" time="0.000" asserts="1">
+ <properties>
+ <property name="RequiresThread" value="True" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TestWithRequiresThreadWithMTAArgRunsOnSeparateThreadInMTA" executed="True" result="Success" success="True" time="0.001" asserts="2">
+ <properties>
+ <property name="RequiresThread" value="True" />
+ <property name="APARTMENT_STATE" value="MTA" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TestWithRequiresThreadWithSTAArgRunsOnSeparateThreadInSTA" executed="True" result="Success" success="True" time="0.001" asserts="2">
+ <properties>
+ <property name="RequiresThread" value="True" />
+ <property name="APARTMENT_STATE" value="STA" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TestWithSTAThreadRunsInSTA" executed="True" result="Success" success="True" time="0.001" asserts="1">
+ <properties>
+ <property name="APARTMENT_STATE" value="STA" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TestWithTimeoutRunsOnSeparateThread" executed="True" result="Success" success="True" time="0.000" asserts="1">
+ <properties>
+ <property name="Timeout" value="50" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TestWithTimeoutRunsSetUpAndTestOnSameThread" executed="True" result="Success" success="True" time="0.001" asserts="1">
+ <properties>
+ <property name="Timeout" value="50" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.Core.Tests.ThreadingTests.TimeoutCanBeSetOnTestFixture" executed="True" result="Success" success="True" time="0.065" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ThreadingTests+FixtureRequiresMTA" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <properties>
+ <property name="APARTMENT_STATE" value="MTA" />
+ </properties>
+ <results>
+ <test-case name="NUnit.Core.Tests.ThreadingTests+FixtureRequiresMTA.RequiresMTACanBeSetOnTestFixture" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ThreadingTests+FixtureRequiresSTA" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <properties>
+ <property name="APARTMENT_STATE" value="STA" />
+ </properties>
+ <results>
+ <test-case name="NUnit.Core.Tests.ThreadingTests+FixtureRequiresSTA.RequiresSTACanBeSetOnTestFixture" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ThreadingTests+FixtureRequiresThread" executed="True" result="Success" success="True" time="0.003" asserts="0">
+ <properties>
+ <property name="RequiresThread" value="True" />
+ </properties>
+ <results>
+ <test-case name="NUnit.Core.Tests.ThreadingTests+FixtureRequiresThread.RequiresThreadCanBeSetOnTestFixture" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TypeHelperTests" executed="True" result="Success" success="True" time="0.053" asserts="0">
+ <results>
+ <test-suite type="ParameterizedTest" name="GetDisplayName" executed="True" result="Success" success="True" time="0.053" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.GenericContainerClass`1+NestedClass[System.String],"GenericContainerClass+NestedClass<String>")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.GenericContainerClass`1+NestedClass+DoublyNestedClass[System.String],"GenericContainerClass+NestedClass+DoublyNestedClass<String>")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.ContainerClass+NestedGeneric`1+DoublyNestedGeneric`1[System.String,System.Int32],"ContainerClass+NestedGeneric+DoublyNestedGeneric<String,Int32>")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.GenericContainerClass`1+NestedGeneric`1+DoublyNestedGeneric`1[System.String,System.Int32,System.Boolean],"GenericContainerClass+NestedGeneric+DoublyNestedGeneric<String,Int32,Boolean>")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.ListTester`1[System.Collections.Generic.List`1[System.Int32]],"ListTester<List<Int32>>")" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.ListTester`1[System.Collections.Generic.List`1[System.Collections.Generic.List`1[System.Int32]]],"ListTester<List<List<Int32>>>")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.GenericContainerClass`1+NestedClass+DoublyNestedGeneric`1[System.String,System.Boolean],"GenericContainerClass+NestedClass+DoublyNestedGeneric<String,Boolean>")" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.GenericContainerClass`1+NestedGeneric`1[System.String,System.Int32],"GenericContainerClass+NestedGeneric<String,Int32>")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(System.Int32,"Int32")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.GenericContainerClass`1+NestedGeneric`1+DoublyNestedClass[System.String,System.Int32],"GenericContainerClass+NestedGeneric+DoublyNestedClass<String,Int32>")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.SimpleClass,"SimpleClass")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(MyNoNamespaceClass,"MyNoNamespaceClass")" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.GenericClass`3[System.Int32,System.Decimal,System.String],"GenericClass<Int32,Decimal,String>")" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.GenericClass`3[System.Int32[],System.Decimal[],System.String[]],"GenericClass<Int32[],Decimal[],String[]>")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.ContainerClass+NestedClass,"ContainerClass+NestedClass")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.ContainerClass+NestedClass+DoublyNestedClass,"ContainerClass+NestedClass+DoublyNestedClass")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.ContainerClass+NestedClass+DoublyNestedGeneric`1[System.Int32],"ContainerClass+NestedClass+DoublyNestedGeneric<Int32>")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.ContainerClass+NestedGeneric`1[System.Int32],"ContainerClass+NestedGeneric<Int32>")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Core.Tests.TypeHelperTests.GetDisplayName(NUnit.TestData.TypeHelperFixture.ContainerClass+NestedGeneric`1+DoublyNestedClass[System.Int32],"ContainerClass+NestedGeneric+DoublyNestedClass<Int32>")" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ValueSourceTests" executed="True" result="Success" success="True" time="0.055" asserts="0">
+ <results>
+ <test-suite type="ParameterizedTest" name="MultipleArguments" executed="True" result="Success" success="True" time="0.006" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.MultipleArguments(12,3,4)" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.MultipleArguments(12,4,3)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.MultipleArguments(12,6,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ValueSourceCanBeInstanceField" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceCanBeInstanceField("InstanceField")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ValueSourceCanBeInstanceMethod" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceCanBeInstanceMethod("InstanceMethod")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ValueSourceCanBeInstanceProperty" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceCanBeInstanceProperty("InstanceProperty")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ValueSourceCanBeStaticField" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceCanBeStaticField("StaticField")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ValueSourceCanBeStaticMethod" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceCanBeStaticMethod("StaticMethod")" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ValueSourceCanBeStaticProperty" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceCanBeStaticProperty("StaticProperty")" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ValueSourceIsInvokedWithCorrectCurrentDirectory" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceIsInvokedWithCorrectCurrentDirectory(True)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ValueSourceMayBeGeneric" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceMayBeGeneric(1)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceMayBeGeneric(2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceMayBeGeneric(4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceMayBeGeneric(8)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="ValueSourceMayBeInAnotherClass" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceMayBeInAnotherClass(12,3,4)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceMayBeInAnotherClass(12,4,3)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Core.Tests.ValueSourceTests.ValueSourceMayBeInAnotherClass(12,6,2)" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="XmlTest" executed="True" result="Success" success="True" time="0.638" asserts="0">
+ <results>
+ <test-case name="NUnit.Core.Tests.XmlTest.removeTime" executed="True" result="Success" success="True" time="0.005" asserts="1" />
+ <test-case name="NUnit.Core.Tests.XmlTest.TestSchemaValidatorFrenchCulture" executed="True" result="Success" success="True" time="0.404" asserts="1" />
+ <test-case name="NUnit.Core.Tests.XmlTest.TestSchemaValidatorInvariantCulture" executed="True" result="Success" success="True" time="0.052" asserts="1" />
+ <test-case name="NUnit.Core.Tests.XmlTest.TestSchemaValidatorUnitedStatesCulture" executed="True" result="Success" success="True" time="0.048" asserts="1" />
+ <test-case name="NUnit.Core.Tests.XmlTest.TestStream" executed="True" result="Success" success="True" time="0.116" asserts="1" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="Assembly" name="D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.util.tests.dll" executed="True" result="Success" success="True" time="41.066" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="NUnit" executed="True" result="Success" success="True" time="41.066" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Util" executed="True" result="Success" success="True" time="41.066" asserts="0">
+ <results>
+ <test-suite type="SetUpFixture" name="Tests" executed="True" result="Success" success="True" time="41.065" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="AssemblyListTests" executed="True" result="Success" success="True" time="0.046" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.AssemblyListTests.AddFiresChangedEvent" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.AssemblyListTests.CanAddAssemblies" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.AssemblyListTests.CanRemoveAssemblies" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.AssemblyListTests.EmptyList" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.AssemblyListTests.MustAddAbsolutePath" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Util.Tests.AssemblyListTests.RemoveAtFiresChangedEvent" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.AssemblyListTests.RemoveFiresChangedEvent" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.AssemblyListTests.SettingFullPathFiresChangedEvent" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CategoryManagerTest" executed="True" result="Success" success="True" time="0.097" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.CategoryManagerTest.CanAddAllAvailableCategoriesInTestTree" executed="True" result="Success" success="True" time="0.043" asserts="1" />
+ <test-case name="NUnit.Util.Tests.CategoryManagerTest.CanAddStrings" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.CategoryManagerTest.CanAddStringsWithoutDuplicating" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.CategoryManagerTest.CanAddTestCategories" executed="True" result="Success" success="True" time="0.040" asserts="1" />
+ <test-case name="NUnit.Util.Tests.CategoryManagerTest.CanClearEntries" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CategoryParseTests" executed="True" result="Success" success="True" time="0.039" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.CategoryParseTests.CanParseCompoundCategory" executed="True" result="Success" success="True" time="0.005" asserts="1" />
+ <test-case name="NUnit.Util.Tests.CategoryParseTests.CanParseExcludedCategories" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.CategoryParseTests.CanParseMultipleAlternatives" executed="True" result="Success" success="True" time="0.002" asserts="4" />
+ <test-case name="NUnit.Util.Tests.CategoryParseTests.CanParseMultipleCategoriesWithAnd" executed="True" result="Success" success="True" time="0.002" asserts="4" />
+ <test-case name="NUnit.Util.Tests.CategoryParseTests.CanParseSimpleCategory" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.CategoryParseTests.EmptyStringReturnsEmptyFilter" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.CategoryParseTests.OrAndMinusCombined" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.CategoryParseTests.PlusAndMinusCombined" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ <test-case name="NUnit.Util.Tests.CategoryParseTests.PrecedenceTest" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Util.Tests.CategoryParseTests.PrecedenceTestWithParentheses" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="DomainManagerTests" executed="True" result="Success" success="True" time="0.029" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.DomainManagerTests.GetCommonAppBase_OneElement" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.DomainManagerTests.GetCommonAppBase_ThreeElements_DiferentDirectories" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Util.Tests.DomainManagerTests.GetCommonAppBase_TwoElements_DifferentDirectories" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.DomainManagerTests.GetCommonAppBase_TwoElements_SameDirectory" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.DomainManagerTests.GetPrivateBinPath" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.Util.Tests.DomainManagerTests.UnloadUnloadedDomain" executed="True" result="Success" success="True" time="0.006" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="EventDispatcherTests" executed="True" result="Success" success="True" time="0.076" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.ProjectLoaded" executed="True" result="Success" success="True" time="0.009" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.ProjectLoadFailed" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.ProjectLoading" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.ProjectUnloaded" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.ProjectUnloadFailed" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.ProjectUnloading" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.RunFailed" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.RunFinished" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.RunStarting" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.SuiteFinished" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.SuiteStarting" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.TestFinished" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.TestLoaded" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.TestLoadFailed" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.TestLoading" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.TestReloaded" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.TestReloadFailed" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.TestReloading" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.TestStarting" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.TestUnloaded" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.TestUnloadFailed" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Util.Tests.EventDispatcherTests.TestUnloading" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="FileWatcherTest" executed="True" result="Success" success="True" time="0.901" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.FileWatcherTest.ChangingAttributesDoesNotTriggerWatcher" executed="True" result="Success" success="True" time="0.217" asserts="1" />
+ <test-case name="NUnit.Util.Tests.FileWatcherTest.ChangingFileTriggersWatcher" executed="True" result="Success" success="True" time="0.204" asserts="2" />
+ <test-case name="NUnit.Util.Tests.FileWatcherTest.CopyingFileDoesNotTriggerWatcher" executed="True" result="Success" success="True" time="0.205" asserts="1" />
+ <test-case name="NUnit.Util.Tests.FileWatcherTest.MultipleCloselySpacedChangesTriggerWatcherOnlyOnce" executed="True" result="Success" success="True" time="0.263" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="MemorySettingsStorageTests" executed="True" result="Success" success="True" time="0.025" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.MemorySettingsStorageTests.MakeStorage" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.MemorySettingsStorageTests.MakeSubStorages" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.MemorySettingsStorageTests.RemoveSettings" executed="True" result="Success" success="True" time="0.005" asserts="3" />
+ <test-case name="NUnit.Util.Tests.MemorySettingsStorageTests.SaveAndLoadSettings" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Util.Tests.MemorySettingsStorageTests.SubstorageSettings" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.MemorySettingsStorageTests.TypeSafeSettings" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NUnitProjectLoad" executed="True" result="Success" success="True" time="0.045" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.NUnitProjectLoad.FromAssembly" executed="True" result="Success" success="True" time="0.005" asserts="5" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectLoad.LoadEmptyConfigs" executed="True" result="Success" success="True" time="0.010" asserts="3" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectLoad.LoadEmptyProject" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectLoad.LoadNormalProject" executed="True" result="Success" success="True" time="0.004" asserts="7" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectLoad.LoadProjectWithManualBinPath" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectLoad.SaveClearsAssemblyWrapper" executed="True" result="Success" success="True" time="0.006" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NUnitProjectSave" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.NUnitProjectSave.SaveEmptyConfigs" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectSave.SaveEmptyProject" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectSave.SaveNormalProject" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NUnitProjectTests" executed="True" result="Success" success="True" time="0.113" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.AddConfigMakesProjectDirty" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.CanAddAssemblies" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.CanAddConfigs" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.CanSetActiveConfig" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.CanSetAppBase" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.ConfigurationFileFromAssemblies" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.ConfigurationFileFromAssembly" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.DefaultActiveConfig" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.DefaultApplicationBase" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.DefaultConfigurationFile" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.DefaultProjectName" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.IsProjectFile" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.LoadMakesProjectNotDirty" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.NewProjectDefaultPath" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.NewProjectIsEmpty" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.NewProjectIsNotDirty" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.NewProjectNotLoadable" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.RemoveActiveConfig" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.RemoveConfigMakesProjectDirty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.RenameActiveConfig" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.RenameConfigMakesProjectDirty" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.SaveAndLoadConfigsWithAssemblies" executed="True" result="Success" success="True" time="0.003" asserts="8" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.SaveAndLoadEmptyConfigs" executed="True" result="Success" success="True" time="0.002" asserts="4" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.SaveAndLoadEmptyProject" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.SaveMakesProjectNotDirty" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.SaveSetsProjectPath" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.NUnitProjectTests.SettingActiveConfigMakesProjectDirty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="NUnitRegistryTests" executed="True" result="Success" success="True" time="0.014" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.NUnitRegistryTests.CurrentUser" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.NUnitRegistryTests.CurrentUserTestMode" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.NUnitRegistryTests.TestClearRoutines" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PathUtilTests" executed="True" result="Success" success="True" time="0.001" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.PathUtilTests.CheckDefaults" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PathUtilTests_Unix" executed="True" result="Success" success="True" time="0.019" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.PathUtilTests_Unix.Canonicalize" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.PathUtilTests_Unix.IsAssemblyFileType" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.PathUtilTests_Unix.PathFromUri" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.PathUtilTests_Unix.RelativePath" executed="True" result="Success" success="True" time="0.001" asserts="10" />
+ <test-case name="NUnit.Util.Tests.PathUtilTests_Unix.SamePath" executed="True" result="Success" success="True" time="0.002" asserts="4" />
+ <test-case name="NUnit.Util.Tests.PathUtilTests_Unix.SamePathOrUnder" executed="True" result="Success" success="True" time="0.001" asserts="7" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="PathUtilTests_Windows" executed="True" result="Success" success="True" time="0.015" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.PathUtilTests_Windows.Canonicalize" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Util.Tests.PathUtilTests_Windows.IsAssemblyFileType" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.PathUtilTests_Windows.PathFromUri" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.PathUtilTests_Windows.RelativePath" executed="True" result="Success" success="True" time="0.001" asserts="12" />
+ <test-case name="NUnit.Util.Tests.PathUtilTests_Windows.SamePath" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Util.Tests.PathUtilTests_Windows.SamePathOrUnder" executed="True" result="Success" success="True" time="0.000" asserts="9" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ProcessRunnerTests" executed="True" result="Success" success="True" time="12.364" asserts="1">
+ <properties>
+ <property name="Timeout" value="30000" />
+ </properties>
+ <results>
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.CheckRunnerID" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.CountTestCases" executed="True" result="Success" success="True" time="1.126" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.CountTestCasesAcrossMultipleAssemblies" executed="True" result="Success" success="True" time="0.746" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.LoadAndReloadAssembly" executed="True" result="Success" success="True" time="1.374" asserts="2" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.LoadAssemblyWithFixture" executed="True" result="Success" success="True" time="0.655" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.LoadAssemblyWithoutNamespaces" executed="True" result="Success" success="True" time="0.696" asserts="4" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.LoadAssemblyWithSuite" executed="True" result="Success" success="True" time="0.593" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.LoadMultipleAssemblies" executed="True" result="Success" success="True" time="0.681" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.LoadMultipleAssembliesWithFixture" executed="True" result="Success" success="True" time="0.674" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.LoadMultipleAssembliesWithSuite" executed="True" result="Success" success="True" time="0.630" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.RunAssembly" executed="True" result="Success" success="True" time="0.879" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.RunAssemblyUsingBeginAndEndRun" executed="True" result="Success" success="True" time="0.900" asserts="2" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.RunMultipleAssemblies" executed="True" result="Success" success="True" time="0.938" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.BasicRunnerTests.RunMultipleAssembliesUsingBeginAndEndRun" executed="True" result="Success" success="True" time="0.914" asserts="2" />
+ <test-case name="NUnit.Util.Tests.ProcessRunnerTests.TestProcessIsReused" executed="True" result="Success" success="True" time="1.449" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ProjectConfigTests" executed="True" result="Success" success="True" time="0.127" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.AbsoluteBasePath" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.AbsoluteConfigurationFile" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.AddingConfigMarksProjectDirty" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.AddingInitialConfigRequiresReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.AddingSubsequentConfigDoesNotRequireReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.AddToActiveConfigMarksProjectDirty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.AddToActiveConfigRequiresReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.AddToInactiveConfigDoesNotRequireReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.AddToInactiveConfigMarksProjectDirty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.CanAddAssemblies" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.DefaultConfigurationFile" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.EmptyConfig" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.ManualPrivateBinPath" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.NoBasePathSet" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.NoPrivateBinPath" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.RelativeBasePath" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.RelativeConfigurationFile" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.RemoveActiveConfigMarksProjectDirty" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.RemoveActiveConfigRequiresReload" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.RemoveInactiveConfigDoesNotRequireReload" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.RemoveInactiveConfigMarksProjectDirty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.RenameActiveConfigMarksProjectDirty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.RenameActiveConfigRequiresReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.RenameInactiveConfigDoesNotRequireReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.RenameInctiveConfigMarksProjectDirty" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingActiveConfigApplicationBaseMarksProjectDirty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingActiveConfigApplicationBaseRequiresReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingActiveConfigBinPathTypeMarksProjectDirty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingActiveConfigBinPathTypeRequiresReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingActiveConfigConfigurationFileMarksProjectDirty" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingActiveConfigConfigurationFileRequiresReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingActiveConfigPrivateBinPathMarksProjectDirty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingActiveConfigPrivateBinPathRequiresReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingInactiveConfigApplicationBaseDoesNotRequireReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingInactiveConfigApplicationBaseMarksProjectDirty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingInactiveConfigBinPathTypeDoesNotRequireReload" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingInactiveConfigBinPathTypeMarksProjectDirty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingInactiveConfigConfigurationFileDoesNotRequireReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingInactiveConfigConfigurationFileMarksProjectDirty" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingInactiveConfigPrivateBinPathDoesNotRequireReload" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.SettingInactiveConfigPrivateBinPathMarksProjectDirty" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.ProjectConfigTests.ToArray" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RecentFileEntryTests" executed="True" result="Success" success="True" time="0.023" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.RecentFileEntryTests.CanCreateFromFileNameAndVersion" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RecentFileEntryTests.CanCreateFromSimpleFileName" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RecentFileEntryTests.CanParseFileNamePlusVersionString" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RecentFileEntryTests.CanParseFileNameWithCommaPlusVersionString" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RecentFileEntryTests.CanParseSimpleFileName" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RecentFileEntryTests.CanParseSimpleFileNameWithComma" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RecentFileEntryTests.EntryCanDisplayItself" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RecentFilesTests" executed="True" result="Success" success="True" time="0.075" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.AddMaxItems" executed="True" result="Success" success="True" time="0.005" asserts="7" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.AddSingleItem" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.AddTooManyItems" executed="True" result="Success" success="True" time="0.001" asserts="7" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.CountAtMax" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.CountAtMin" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.CountDefault" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.CountOverMax" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.CountUnderMin" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.EmptyList" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.IncreaseSize" executed="True" result="Success" success="True" time="0.000" asserts="12" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.IncreaseSizeAfterAdd" executed="True" result="Success" success="True" time="0.003" asserts="8" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.ReduceSize" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.ReduceSizeAfterAdd" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.RemoveFirstProject" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.RemoveLastProject" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.RemoveMultipleProjects" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.RemoveOneProject" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.ReorderLastProject" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.ReorderMultipleProjects" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.ReorderSameProject" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.ReorderSingleProject" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ <test-case name="NUnit.Util.Tests.RecentFilesTests.ReorderWithListNotFull" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RegistrySettingsStorageTests" executed="True" result="Success" success="True" time="0.022" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.RegistrySettingsStorageTests.MakeSubStorages" executed="True" result="Success" success="True" time="0.002" asserts="4" />
+ <test-case name="NUnit.Util.Tests.RegistrySettingsStorageTests.RemoveSettings" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Util.Tests.RegistrySettingsStorageTests.SaveAndLoadSettings" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ <test-case name="NUnit.Util.Tests.RegistrySettingsStorageTests.StorageHasCorrectKey" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.RegistrySettingsStorageTests.SubstorageSettings" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.RegistrySettingsStorageTests.TypeSafeSettings" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RemoteTestAgentTests" executed="True" result="Success" success="True" time="0.014" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.RemoteTestAgentTests.AgentReturnsProcessId" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.RemoteTestAgentTests.CanLocateAgentExecutable" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.RemoteTestAgentTests.CanLocateAgentExeForAllInstalledVersions" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.RemoteTestAgentTests.CanLocateBinDirForAllInstalledVersions" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RemoteTestResultTest" executed="True" result="Success" success="True" time="0.865" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.RemoteTestResultTest.ResultStillValidAfterDomainUnload" executed="True" result="Success" success="True" time="0.864" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RuntimeFrameworkSelectorTests" executed="True" result="Success" success="True" time="0.061" asserts="0">
+ <results>
+ <test-suite type="Theory" name="RequestForSpecificFrameworkIsHonored" executed="True" result="Success" success="True" time="0.031" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificFrameworkIsHonored(net-1.0)" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificFrameworkIsHonored(net-1.1)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificFrameworkIsHonored(net-2.0)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificFrameworkIsHonored(net-4.0)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificFrameworkIsHonored(mono-1.0)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificFrameworkIsHonored(mono-2.0)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificFrameworkIsHonored(v1.1)" executed="True" result="Inconclusive" success="False" time="0.004" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: not Any
+ But was: Any
+]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificFrameworkIsHonored(v2.0)" executed="True" result="Inconclusive" success="False" time="0.000" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: not Any
+ But was: Any
+]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificFrameworkIsHonored(v4.0)" executed="True" result="Inconclusive" success="False" time="0.000" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: not Any
+ But was: Any
+]]></message>
+ </reason>
+ </test-case>
+ </results>
+ </test-suite>
+ <test-suite type="Theory" name="RequestForSpecificVersionIsHonored" executed="True" result="Success" success="True" time="0.026" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificVersionIsHonored(net-1.0)" executed="True" result="Inconclusive" success="False" time="0.001" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: Any
+ But was: Net
+]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificVersionIsHonored(net-1.1)" executed="True" result="Inconclusive" success="False" time="0.001" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: Any
+ But was: Net
+]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificVersionIsHonored(net-2.0)" executed="True" result="Inconclusive" success="False" time="0.001" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: Any
+ But was: Net
+]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificVersionIsHonored(net-4.0)" executed="True" result="Inconclusive" success="False" time="0.000" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: Any
+ But was: Net
+]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificVersionIsHonored(mono-1.0)" executed="True" result="Inconclusive" success="False" time="0.000" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: Any
+ But was: Mono
+]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificVersionIsHonored(mono-2.0)" executed="True" result="Inconclusive" success="False" time="0.001" asserts="0">
+ <reason>
+ <message><![CDATA[ Expected: Any
+ But was: Mono
+]]></message>
+ </reason>
+ </test-case>
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificVersionIsHonored(v1.1)" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificVersionIsHonored(v2.0)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.RuntimeFrameworkSelectorTests.RequestForSpecificVersionIsHonored(v4.0)" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ServerUtilityTests" executed="True" result="Success" success="True" time="0.008" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.ServerUtilityTests.CanGetTcpChannelOnSpecifiedPort" executed="True" result="Success" success="True" time="0.003" asserts="5" />
+ <test-case name="NUnit.Util.Tests.ServerUtilityTests.CanGetTcpChannelOnUnpecifiedPort" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SettingsGroupTests" executed="True" result="Success" success="True" time="0.014" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.SettingsGroupTests.BadSetting" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.SettingsGroupTests.DefaultSettings" executed="True" result="Success" success="True" time="0.001" asserts="7" />
+ <test-case name="NUnit.Util.Tests.SettingsGroupTests.SubGroupSettings" executed="True" result="Success" success="True" time="0.001" asserts="7" />
+ <test-case name="NUnit.Util.Tests.SettingsGroupTests.TopLevelSettings" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.SettingsGroupTests.TypeSafeSettings" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="SummaryResultFixture" executed="True" result="Success" success="True" time="0.011" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.SummaryResultFixture.SummaryMatchesResult" executed="True" result="Success" success="True" time="0.010" asserts="9" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestAgencyTests" executed="True" result="Success" success="True" time="0.325" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.TestAgencyTests.CanConnectToAgency" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Util.Tests.TestAgencyTests.CanLaunchAndConnectToAgent" executed="True" result="Success" success="True" time="0.318" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestDomainFixture" executed="True" result="Success" success="True" time="0.889" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.TestDomainFixture.AppDomainIsSetUpCorrectly" executed="True" result="Success" success="True" time="0.002" asserts="8" />
+ <test-case name="NUnit.Util.Tests.TestDomainFixture.AssemblyIsLoadedCorrectly" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Util.Tests.TestDomainFixture.CanRunMockAssemblyTests" executed="True" result="Success" success="True" time="0.209" asserts="5" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestDomainRunnerTests" executed="True" result="Success" success="True" time="9.763" asserts="1">
+ <results>
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.CheckRunnerID" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.CountTestCases" executed="True" result="Success" success="True" time="0.607" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.CountTestCasesAcrossMultipleAssemblies" executed="True" result="Success" success="True" time="0.671" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.LoadAndReloadAssembly" executed="True" result="Success" success="True" time="1.246" asserts="2" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.LoadAssemblyWithFixture" executed="True" result="Success" success="True" time="0.574" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.LoadAssemblyWithoutNamespaces" executed="True" result="Success" success="True" time="0.639" asserts="4" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.LoadAssemblyWithSuite" executed="True" result="Success" success="True" time="0.532" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.LoadMultipleAssemblies" executed="True" result="Success" success="True" time="0.684" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.LoadMultipleAssembliesWithFixture" executed="True" result="Success" success="True" time="0.626" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.LoadMultipleAssembliesWithSuite" executed="True" result="Success" success="True" time="0.618" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.RunAssembly" executed="True" result="Success" success="True" time="0.845" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.RunAssemblyUsingBeginAndEndRun" executed="True" result="Success" success="True" time="0.876" asserts="2" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.RunMultipleAssemblies" executed="True" result="Success" success="True" time="0.879" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainRunnerTests.BasicRunnerTests.RunMultipleAssembliesUsingBeginAndEndRun" executed="True" result="Success" success="True" time="0.880" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestDomainTests" executed="True" result="Success" success="True" time="5.014" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.TestDomainTests.BasePathOverrideIsHonored" executed="True" result="Success" success="True" time="1.083" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainTests.BinPathOverrideIsHonored" executed="True" result="Success" success="True" time="0.635" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainTests.ConfigFileOverrideIsHonored" executed="True" result="Success" success="True" time="0.662" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainTests.FileNotFound" executed="True" result="Success" success="True" time="0.738" asserts="0" />
+ <test-case name="NUnit.Util.Tests.TestDomainTests.InvalidTestFixture" executed="True" result="Success" success="True" time="0.538" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainTests.SpecificTestFixture" executed="True" result="Success" success="True" time="0.798" asserts="4" />
+ <test-case name="NUnit.Util.Tests.TestDomainTests.TurnOffShadowCopy" executed="True" result="Success" success="True" time="0.539" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestDomainTests_Multiple" executed="True" result="Success" success="True" time="0.938" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.TestDomainTests_Multiple.AssemblyNodes" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.TestDomainTests_Multiple.BuildSuite" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainTests_Multiple.RootNode" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainTests_Multiple.RunMultipleAssemblies" executed="True" result="Success" success="True" time="0.205" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestDomainTests_Multiple.TestCaseCount" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestDomainTests_MultipleFixture" executed="True" result="Success" success="True" time="0.635" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.TestDomainTests_MultipleFixture.LoadFixture" executed="True" result="Success" success="True" time="0.634" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestLoaderAssemblyTests" executed="True" result="Success" success="True" time="3.332" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.TestLoaderAssemblyTests.AssemblyWithNoTests" executed="True" result="Success" success="True" time="0.734" asserts="4" />
+ <test-case name="NUnit.Util.Tests.TestLoaderAssemblyTests.FileNotFound" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.TestLoaderAssemblyTests.LoadProject" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.TestLoaderAssemblyTests.LoadTest" executed="True" result="Success" success="True" time="0.668" asserts="6" />
+ <test-case name="NUnit.Util.Tests.TestLoaderAssemblyTests.RunTest" executed="True" result="Success" success="True" time="1.272" asserts="9" />
+ <test-case name="NUnit.Util.Tests.TestLoaderAssemblyTests.UnloadProject" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.TestLoaderAssemblyTests.UnloadTest" executed="True" result="Success" success="True" time="0.633" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestLoaderWatcherTests" executed="True" result="Success" success="True" time="4.510" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.TestLoaderWatcherTests.LoadShouldStartWatcher" executed="True" result="Success" success="True" time="0.655" asserts="3" />
+ <test-case name="NUnit.Util.Tests.TestLoaderWatcherTests.LoadShouldStartWatcherDependingOnSettings" executed="True" result="Success" success="True" time="0.619" asserts="2" />
+ <test-case name="NUnit.Util.Tests.TestLoaderWatcherTests.ReloadShouldStartWatcher" executed="True" result="Success" success="True" time="1.300" asserts="3" />
+ <test-case name="NUnit.Util.Tests.TestLoaderWatcherTests.ReloadShouldStartWatcherDependingOnSettings" executed="True" result="Success" success="True" time="1.265" asserts="2" />
+ <test-case name="NUnit.Util.Tests.TestLoaderWatcherTests.UnloadShouldStopWatcherAndFreeResources" executed="True" result="Success" success="True" time="0.657" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestRunnerFactoryTests" executed="True" result="Success" success="True" time="0.009" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.TestRunnerFactoryTests.DifferentRuntimeUsesProcessRunner" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestRunnerFactoryTests.DifferentVersionUsesProcessRunner" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Util.Tests.TestRunnerFactoryTests.SameFrameworkUsesTestDomain" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="VisualStudioConverterTests" executed="True" result="Success" success="True" time="0.164" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.VisualStudioConverterTests.FromCppProject" executed="True" result="Success" success="True" time="0.085" asserts="5" />
+ <test-case name="NUnit.Util.Tests.VisualStudioConverterTests.FromCSharpProject" executed="True" result="Success" success="True" time="0.003" asserts="5" />
+ <test-case name="NUnit.Util.Tests.VisualStudioConverterTests.FromJsharpProject" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.VisualStudioConverterTests.FromMakefileProject" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Util.Tests.VisualStudioConverterTests.FromProjectWithHebrewFileIncluded" executed="True" result="Success" success="True" time="0.004" asserts="5" />
+ <test-case name="NUnit.Util.Tests.VisualStudioConverterTests.FromVBProject" executed="True" result="Success" success="True" time="0.002" asserts="5" />
+ <test-case name="NUnit.Util.Tests.VisualStudioConverterTests.FromVSSolution2003" executed="True" result="Success" success="True" time="0.012" asserts="7" />
+ <test-case name="NUnit.Util.Tests.VisualStudioConverterTests.FromVSSolution2005" executed="True" result="Success" success="True" time="0.016" asserts="7" />
+ <test-case name="NUnit.Util.Tests.VisualStudioConverterTests.FromWebApplication" executed="True" result="Success" success="True" time="0.005" asserts="3" />
+ <test-case name="NUnit.Util.Tests.VisualStudioConverterTests.WithUnmanagedCpp" executed="True" result="Success" success="True" time="0.006" asserts="5" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="VSProjectTests" executed="True" result="Success" success="True" time="0.086" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.VSProjectTests.FileNotFoundError" executed="True" result="Success" success="True" time="0.002" asserts="0" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.GenerateCorrectExtensionsFromVCProjectVS2005" executed="True" result="Success" success="True" time="0.004" asserts="4" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.InvalidProjectFormat" executed="True" result="Success" success="True" time="0.003" asserts="0" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.InvalidXmlFormat" executed="True" result="Success" success="True" time="0.004" asserts="0" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.LoadCppProject" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.LoadCppProjectVS2005" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.LoadCppProjectWithMacros" executed="True" result="Success" success="True" time="0.003" asserts="4" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.LoadCsharpProject" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.LoadCsharpProjectVS2005" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.LoadInvalidFileType" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.LoadJsharpProject" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.LoadJsharpProjectVS2005" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.LoadProjectWithHebrewFileIncluded" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.LoadVbProject" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.LoadVbProjectVS2005" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.MissingAttributes" executed="True" result="Success" success="True" time="0.003" asserts="0" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.NoConfigurations" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.NotWebProject" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.ProjectExtensions" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Util.Tests.VSProjectTests.SolutionExtension" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="XmlResultWriterTest" executed="True" result="Success" success="True" time="0.108" asserts="0">
+ <results>
+ <test-case name="NUnit.Util.Tests.XmlResultWriterTest.FailingTestHasCorrectInformation" executed="True" result="Success" success="True" time="0.005" asserts="7" />
+ <test-case name="NUnit.Util.Tests.XmlResultWriterTest.HasMultipleCategories" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.Util.Tests.XmlResultWriterTest.HasMultipleProperties" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.Util.Tests.XmlResultWriterTest.HasSingleCategory" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.XmlResultWriterTest.HasSingleProperty" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Util.Tests.XmlResultWriterTest.IgnoredTestHasCorrectInformation" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.XmlResultWriterTest.InconclusiveTestHasCorrectInformation" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ <test-case name="NUnit.Util.Tests.XmlResultWriterTest.PassingTestHasCorrectInformation" executed="True" result="Success" success="True" time="0.000" asserts="6" />
+ <test-case name="NUnit.Util.Tests.XmlResultWriterTest.SuiteResultHasCategories" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.Util.Tests.XmlResultWriterTest.TestHasCultureInfo" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Util.Tests.XmlResultWriterTest.TestHasEnvironmentInfo" executed="True" result="Success" success="True" time="0.000" asserts="9" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="Assembly" name="D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.mocks.tests.dll" executed="True" result="Success" success="True" time="0.166" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="NUnit" executed="True" result="Success" success="True" time="0.165" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Mocks" executed="True" result="Success" success="True" time="0.165" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Tests" executed="True" result="Success" success="True" time="0.165" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="DynamicMockTests" executed="True" result="Success" success="True" time="0.044" asserts="0">
+ <results>
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.CallMethod" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.CallMethodWithArgs" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.CreateMockForMBRClass" executed="True" result="Success" success="True" time="0.002" asserts="13" />
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.CreateMockForNonMBRClassFails" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.DefaultReturnValues" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.ExpectedMethod" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.ExpectedMethodNotCalled" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.MethodWithReturnValue" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.MockHasDefaultName" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.MockHasNonDefaultName" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.OverrideMethodOnDynamicMock" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.RefParameter" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Mocks.Tests.DynamicMockTests.WrongReturnType" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="MockTests" executed="True" result="Success" success="True" time="0.115" asserts="0">
+ <results>
+ <test-case name="NUnit.Mocks.Tests.MockTests.CallMultipleMethodsInDifferentOrder" executed="True" result="Success" success="True" time="0.000" asserts="6" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.CallMultipleMethodsSomeWithoutExpectations" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.ChangeExpectAndReturnToFixedReturn" executed="True" result="Success" success="True" time="0.001" asserts="8" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.ChangeFixedReturnToExpectAndReturn" executed="True" result="Success" success="True" time="0.001" asserts="9" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.ConstraintArgumentSucceeds" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.ConstraintArgumentThatFails" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.ExpectAndReturn" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.ExpectAndReturnNull" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.ExpectAndReturnWithArgument" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.ExpectAndReturnWithWrongArgument" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.ExpectAndThrowException" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.ExpectNoCallFails" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.ExpectNoCallSucceeds" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.FailWithParametersSpecified" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.IgnoreArguments" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.MethodNotCalled" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.MockHasName" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.MultipleCallsToSameMethod" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.MultipleExpectAndReturn" executed="True" result="Success" success="True" time="0.001" asserts="10" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.MultipleExpectations" executed="True" result="Success" success="True" time="0.001" asserts="12" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.NotEnoughCalls" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.OneExpectation" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.RequireArguments" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.SetReturnValue" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.SetReturnValueMultipleTimesOnMultipleMethods" executed="True" result="Success" success="True" time="0.000" asserts="7" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.SetReturnValueRepeatedCalls" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.SetReturnValueWithoutCalling" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.StrictDefaultsToFalse" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.StrictMode" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.StrictMode_ExceptionsCaught" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.TooManyCalls" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.UnexpectedCallsIgnored" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.Mocks.Tests.MockTests.VerifyNewMock" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="Assembly" name="D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit-console.tests.dll" executed="True" result="Success" success="True" time="11.984" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="NUnit" executed="True" result="Success" success="True" time="11.984" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="ConsoleRunner" executed="True" result="Success" success="True" time="11.983" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Tests" executed="True" result="Success" success="True" time="11.983" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="CommandLineTests" executed="True" result="Success" success="True" time="0.092" asserts="0">
+ <results>
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.AllowForwardSlashDefaultsCorrectly" executed="True" result="Success" success="True" time="0.018" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.AssemblyAloneIsValid" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.AssemblyName" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.FileNameWithoutXmlParameterLooksLikeParameter" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.FixtureNamePlusAssemblyIsValid" executed="True" result="Success" success="True" time="0.004" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.HelpTextUsesCorrectDelimiterForPlatform" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.InvalidCommandLineParms" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.InvalidOption" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.NoFixtureNameProvided" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.NoParametersCount" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.OptionsAreRecognized" executed="True" result="Success" success="True" time="0.017" asserts="100" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.XmlParameter" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.XmlParameterWithFullPath" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.XmlParameterWithFullPathUsingEqualSign" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests.XmlParameterWithoutFileNameIsInvalid" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="CommandLineTests_MultipleAssemblies" executed="True" result="Success" success="True" time="0.014" asserts="0">
+ <results>
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests_MultipleAssemblies.CheckParameters" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests_MultipleAssemblies.FixtureParameters" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests_MultipleAssemblies.FixtureValidate" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests_MultipleAssemblies.MultipleAssemblyValidate" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.CommandLineTests_MultipleAssemblies.ParameterCount" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ConsoleRunnerTest" executed="True" result="Success" success="True" time="11.821" asserts="0">
+ <results>
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.AssemblyNotFound" executed="True" result="Success" success="True" time="0.025" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.Bug1073539Test" executed="True" result="Success" success="True" time="0.845" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.Bug1311644Test" executed="True" result="Success" success="True" time="0.805" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.CanRunWithMultipleTestDomains" executed="True" result="Success" success="True" time="1.766" asserts="2" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.CanRunWithMultipleTestDomains_NoThread" executed="True" result="Success" success="True" time="1.749" asserts="2" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.CanRunWithoutTestDomain" executed="True" result="Success" success="True" time="0.062" asserts="2" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.CanRunWithoutTestDomain_NoThread" executed="True" result="Success" success="True" time="0.061" asserts="2" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.CanRunWithSingleTestDomain" executed="True" result="Success" success="True" time="1.025" asserts="2" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.CanRunWithSingleTestDomain_NoThread" executed="True" result="Success" success="True" time="0.975" asserts="2" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.FailureFixture" executed="True" result="Success" success="True" time="0.777" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.InvalidFixture" executed="True" result="Success" success="True" time="0.516" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.MultiFailureFixture" executed="True" result="Success" success="True" time="0.820" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.OneOfTwoAssembliesNotFound" executed="True" result="Success" success="True" time="0.007" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.SuccessFixture" executed="True" result="Success" success="True" time="0.773" asserts="1" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.XmlResult" executed="True" result="Success" success="True" time="0.782" asserts="2" />
+ <test-case name="NUnit.ConsoleRunner.Tests.ConsoleRunnerTest.XmlToConsole" executed="True" result="Success" success="True" time="0.784" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestNameParserTests" executed="True" result="Success" success="True" time="0.041" asserts="0">
+ <results>
+ <test-suite type="ParameterizedTest" name="SingleName" executed="True" result="Success" success="True" time="0.026" asserts="0">
+ <results>
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.SingleName("Test.Namespace.Fixture.Method<int,int>()")" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.SingleName("Test.Namespace.Fixture.Method,")" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.SingleName(" Test.Namespace.Fixture.Method ")" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.SingleName(" Test.Namespace.Fixture.Method ,")" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.SingleName("Test.Namespace.Fixture.Method()")" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.SingleName("Test.Namespace.Fixture.Method(\"string,argument\")")" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.SingleName("Test.Namespace.Fixture.Method(1,2,3)")" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.SingleName("Test.Namespace.Fixture.Method")" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.SingleName("Test.Namespace.Fixture.Method(\")\")")" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="ParameterizedTest" name="TwoNames" executed="True" result="Success" success="True" time="0.010" asserts="0">
+ <results>
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.TwoNames("Test.Namespace.Fixture.Method1","Test.Namespace.Fixture.Method2")" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.TwoNames("Test.Namespace.Fixture.Method1(\"(\")","Test.Namespace.Fixture.Method2(\"<\")")" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.TwoNames("Test.Namespace.Fixture.Method1","Test.Namespace.Fixture.Method2,")" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.ConsoleRunner.Tests.TestNameParserTests.TwoNames("Test.Namespace.Fixture.Method1(1,2)","Test.Namespace.Fixture.Method2(3,4)")" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="Assembly" name="D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.uiexception.tests.dll" executed="True" result="Success" success="True" time="1.892" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="NUnit" executed="True" result="Success" success="True" time="1.892" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="UiException" executed="True" result="Success" success="True" time="1.891" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Tests" executed="True" result="Success" success="True" time="1.891" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="CodeFormatters" executed="True" result="Success" success="True" time="0.488" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="TestCodeFormatterCollection" executed="True" result="Success" success="True" time="0.055" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.Clear" executed="True" result="Success" success="True" time="0.004" asserts="1" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.ContainsFormatterFromExtension" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.Indexer_Can_Throw_UnknownExtensionException" executed="True" result="Success" success="True" time="0.002" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.ItemIndexer_Can_Throw_NullExtensionException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.Register_Can_Throw_NullExtensionException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.Register_Can_Throw_NullFormatterException" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.Register_Check_Extension_Case" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.Register_Check_Extension_Is_Not_Empty" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.Register_Check_Extension_Not_Contain_Dot_Character" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.Register_Check_Multiple_Extension_Definition" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.Remove" executed="True" result="Success" success="True" time="0.002" asserts="4" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.Remove_Is_Not_Case_Sensitive" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.StringIndexer_Can_Throw_NullExtensionException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCodeFormatterCollection.Test_Default" executed="True" result="Success" success="True" time="0.003" asserts="10" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestCSharpCodeFormatter" executed="True" result="Success" success="True" time="0.067" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCSharpCodeFormatter.Format_Can_Throw_CSharpNullException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCSharpCodeFormatter.Test_Conserve_Intermediary_Spaces" executed="True" result="Success" success="True" time="0.034" asserts="9" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCSharpCodeFormatter.Test_Default" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCSharpCodeFormatter.Test_Format" executed="True" result="Success" success="True" time="0.006" asserts="1" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCSharpCodeFormatter.Test_Format_2" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCSharpCodeFormatter.Test_Format_3" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestCSharpCodeFormatter.Test_PreProcess" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestFormattedCode" executed="True" result="Success" success="True" time="0.043" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestFormattedCode.CheckData_Can_Throw_NullDataException" executed="True" result="Success" success="True" time="0.003" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestFormattedCode.CheckData_IndexArray_And_TagArray_Count_Must_Match" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestFormattedCode.CheckData_LineArray_Values_Must_Always_Grow_Up" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestFormattedCode.CheckData_LineArray_Values_Must_Be_In_IndexArray_Count" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestFormattedCode.Empty" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestFormattedCode.Test_ComplexCollection" executed="True" result="Success" success="True" time="0.006" asserts="22" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestFormattedCode.Test_Equals" executed="True" result="Success" success="True" time="0.002" asserts="10" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestFormattedCode.Test_MaxLength" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestFormattedCode.Test_SimpleCollection" executed="True" result="Success" success="True" time="0.003" asserts="17" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestGeneralCodeFormatter" executed="True" result="Success" success="True" time="0.103" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.All_Formatters_Have_Unique_Language_Value" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.All_Formatters_Should_Have_Overwrite_Behavior" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.All_Formatters_Should_PreProcess_Tab_Character" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.Any_Formatter_Should_Format_Any_Text" executed="True" result="Success" success="True" time="0.023" asserts="6" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.DefaultFormatter" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.DefaultFormatter_Can_Throw_FormatterNullException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.Format" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.Format_Can_Throw_CodeNullException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.Format_Can_Throw_LanguageNameNullException" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.Format_Pick_Best_Formatter" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.FormatFromExtension_Can_Throw_CodeNullException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.FormatFromExtension_Can_Throw_ExtensionNullException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.GetFormatterFromExtension_Can_Throw_ExtensionNullException" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.GetFormatterFromLanguage_Can_Throw_LanguageNullException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.GetFormatterFroms" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.LanguageFromExtension" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestGeneralCodeFormatter.Test_Default" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestLexer" executed="True" result="Success" success="True" time="0.051" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_Default" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_Dot_Character" executed="True" result="Success" success="True" time="0.004" asserts="5" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_SetText_Throws_NullArgumentException" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_Split_ColonCharacter" executed="True" result="Success" success="True" time="0.002" asserts="20" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_Split_CommentC" executed="True" result="Success" success="True" time="0.001" asserts="10" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_Split_CommentCpp" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_Split_DoubleQuote" executed="True" result="Success" success="True" time="0.002" asserts="19" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_Split_Equals" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_Split_New_Line" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_Split_NumberSign" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_Split_SingleQuote" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_Split_WhiteSpaces" executed="True" result="Success" success="True" time="0.003" asserts="35" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestLexer.Test_Split_Words" executed="True" result="Success" success="True" time="0.001" asserts="10" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestPlainTextCodeFormatter" executed="True" result="Success" success="True" time="0.015" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestPlainTextCodeFormatter.Format_Can_Throw_CodeNullException" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestPlainTextCodeFormatter.Format_HelloWorld" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestPlainTextCodeFormatter.Format_Lines" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestPlainTextCodeFormatter.Test_Language" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestPlainTextCodeFormatter.Test_PreProcess" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestToken" executed="True" result="Success" success="True" time="0.002" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestToken.Test_Equals" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestTokenClassifier" executed="True" result="Success" success="True" time="0.063" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenClassifier.test_AcceptToken" executed="True" result="Success" success="True" time="0.006" asserts="60" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenClassifier.Test_Classification_Cases" executed="True" result="Success" success="True" time="0.004" asserts="32" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenClassifier.Test_Classify" executed="True" result="Success" success="True" time="0.003" asserts="60" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenClassifier.Test_Classify_As_Keyword" executed="True" result="Success" success="True" time="0.005" asserts="81" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenClassifier.Test_Classify_Can_Throw_ArgumentNullException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenClassifier.Test_Classify_Throw_NullArgException" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenClassifier.Test_Escaping_sequence" executed="True" result="Success" success="True" time="0.009" asserts="61" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenClassifier.Test_NewState" executed="True" result="Success" success="True" time="0.008" asserts="40" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenClassifier.Test_Reset" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestTokenDictionary" executed="True" result="Success" success="True" time="0.053" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.Add_can_throw_AlreadyDefinedException" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.Add_can_throw_EmptySequenceException" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.Add_can_throw_InvalidSortException" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.Add_can_throw_NullValueException" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.add_token" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.PopulateTokenStartingWith" executed="True" result="Success" success="True" time="0.004" asserts="14" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.PopulateTokenStartingWith_can_throw_NullOutputException" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.PopulateTokenStartingWith_can_throw_NullStarterException" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.test_default" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.TryMatch_can_throw_NullPredictionException" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.TryMatch_can_throw_NullTextException" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.TryMatch_no_prediction" executed="True" result="Success" success="True" time="0.002" asserts="146" />
+ <test-case name="NUnit.UiException.Tests.CodeFormatters.TestTokenDictionary.TryMatch_prediction" executed="True" result="Success" success="True" time="0.002" asserts="19" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="Namespace" name="Controls" executed="True" result="Success" success="True" time="1.133" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="TestCodeBox" executed="True" result="Success" success="True" time="0.254" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.Controls.TestCodeBox.Can_Disable_ShowCurrentLine" executed="True" result="Success" success="True" time="0.195" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestCodeBox.Can_Set_Back_And_Fore_Colors" executed="True" result="Success" success="True" time="0.007" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestCodeBox.Changing_Font_Causes_Reformatting" executed="True" result="Success" success="True" time="0.006" asserts="24" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestCodeBox.Changing_Language_Causes_Reformatting" executed="True" result="Success" success="True" time="0.005" asserts="34" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestCodeBox.CurrentLine" executed="True" result="Success" success="True" time="0.009" asserts="30" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestCodeBox.DefaultState" executed="True" result="Success" success="True" time="0.003" asserts="11" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestCodeBox.Format_Text_With_Language" executed="True" result="Success" success="True" time="0.003" asserts="25" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestCodeBox.OnPaint" executed="True" result="Success" success="True" time="0.003" asserts="19" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestCodeRenderingContext" executed="True" result="Success" success="True" time="0.016" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.Controls.TestCodeRenderingContext.Can_Change_Colors" executed="True" result="Success" success="True" time="0.008" asserts="43" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestCodeRenderingContext.DefaultState" executed="True" result="Success" success="True" time="0.003" asserts="38" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestDefaultCodeRenderer" executed="True" result="Success" success="True" time="0.036" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.Controls.TestDefaultCodeRenderer.DrawToGraphics_Can_Raise_ArgumentNullException" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestDefaultCodeRenderer.GetDocumentSize" executed="True" result="Success" success="True" time="0.002" asserts="4" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestDefaultCodeRenderer.GetDocumentSize_Can_Raise_ArgumentNullException" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestDefaultCodeRenderer.LineIndexToYCoordinate" executed="True" result="Success" success="True" time="0.002" asserts="4" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestDefaultCodeRenderer.LineIndexToYCoordinate_Can_Raise_ArgumentNullException" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestDefaultCodeRenderer.ViewportLines" executed="True" result="Success" success="True" time="0.009" asserts="32" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestDefaultErrorListRenderer" executed="True" result="Success" success="True" time="0.211" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.Controls.TestDefaultErrorListRenderer.DefaultState" executed="True" result="Success" success="True" time="0.021" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestDefaultErrorListRenderer.DrawToGraphics_Can_Throw_ArgumentNullException" executed="True" result="Success" success="True" time="0.005" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestDefaultErrorListRenderer.GetDocumentSize" executed="True" result="Success" success="True" time="0.003" asserts="5" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestDefaultErrorListRenderer.IsDirty" executed="True" result="Success" success="True" time="0.154" asserts="7" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestDefaultErrorListRenderer.ItemAt" executed="True" result="Success" success="True" time="0.004" asserts="7" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestDefaultErrorListRenderer.MeasureItem" executed="True" result="Success" success="True" time="0.004" asserts="6" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestErrorBrowser" executed="True" result="Success" success="True" time="0.206" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorBrowser.Can_Raise_ErrorSourceChanged" executed="True" result="Success" success="True" time="0.144" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorBrowser.Cannot_Register_Null_Display" executed="True" result="Success" success="True" time="0.002" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorBrowser.DefaultState" executed="True" result="Success" success="True" time="0.004" asserts="10" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorBrowser.ErrorDisplay_Plugins_life_cycle_events" executed="True" result="Success" success="True" time="0.037" asserts="55" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorBrowser.LayoutPanel_Auto_Resizes_When_Parent_Sizes_Change" executed="True" result="Success" success="True" time="0.006" asserts="4" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestErrorList" executed="True" result="Success" success="True" time="0.070" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorList.AutoSelectFirstItem" executed="True" result="Success" success="True" time="0.005" asserts="4" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorList.CanReportInvalidItems" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorList.Click_Can_Select_Item" executed="True" result="Success" success="True" time="0.003" asserts="23" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorList.CurrentSelection" executed="True" result="Success" success="True" time="0.003" asserts="10" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorList.DefaultState" executed="True" result="Success" success="True" time="0.001" asserts="7" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorList.DrawItem" executed="True" result="Success" success="True" time="0.018" asserts="39" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorList.Invoking_DrawToGraphics" executed="True" result="Success" success="True" time="0.005" asserts="22" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorList.ListOrderPolicy" executed="True" result="Success" success="True" time="0.007" asserts="22" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorList.Populate_StackTraceSource" executed="True" result="Success" success="True" time="0.003" asserts="11" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestErrorPanelLayout" executed="True" result="Success" success="True" time="0.014" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorPanelLayout.Can_Layout_Child_Controls_When_Size_Changed" executed="True" result="Success" success="True" time="0.002" asserts="16" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorPanelLayout.DefaultState" executed="True" result="Success" success="True" time="0.001" asserts="13" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorPanelLayout.Setting_Content" executed="True" result="Success" success="True" time="0.001" asserts="21" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorPanelLayout.Setting_Toolbar" executed="True" result="Success" success="True" time="0.001" asserts="14" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestErrorToolbar" executed="True" result="Success" success="True" time="0.128" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorToolbar.Cannot_Register_Null_Display" executed="True" result="Success" success="True" time="0.003" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorToolbar.Cannot_Select_UnRegistered_Display" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorToolbar.DefaultState" executed="True" result="Success" success="True" time="0.003" asserts="8" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorToolbar.NewStripButton" executed="True" result="Success" success="True" time="0.010" asserts="1" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorToolbar.PluginItem_Click_Raises_SelectedRenderedChanged" executed="True" result="Success" success="True" time="0.030" asserts="4" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorToolbar.Registering_displays_adds_ToolStripItem" executed="True" result="Success" success="True" time="0.052" asserts="30" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorToolbar.SelectedDisplay" executed="True" result="Success" success="True" time="0.002" asserts="9" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestErrorToolbar.Set_Or_Unset_Check_Flag_On_Selection" executed="True" result="Success" success="True" time="0.005" asserts="6" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestSourceCodeDisplay" executed="True" result="Success" success="True" time="0.049" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.Controls.TestSourceCodeDisplay.CanReportFileException" executed="True" result="Success" success="True" time="0.010" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSourceCodeDisplay.DefaultState" executed="True" result="Success" success="True" time="0.006" asserts="15" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSourceCodeDisplay.ListOrderPolicy" executed="True" result="Success" success="True" time="0.003" asserts="14" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSourceCodeDisplay.SelectedItemChanged" executed="True" result="Success" success="True" time="0.005" asserts="26" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSourceCodeDisplay.SplitOrientation" executed="True" result="Success" success="True" time="0.005" asserts="4" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSourceCodeDisplay.SplitterDistance" executed="True" result="Success" success="True" time="0.004" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestSplitterBox" executed="True" result="Success" success="True" time="0.053" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.Controls.TestSplitterBox.CanChangeDefaultControl1" executed="True" result="Success" success="True" time="0.004" asserts="48" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSplitterBox.CanChangeDefaultControl2" executed="True" result="Success" success="True" time="0.001" asserts="48" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSplitterBox.ChangingSizeInvokeDoLayout" executed="True" result="Success" success="True" time="0.000" asserts="28" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSplitterBox.CollapseControl" executed="True" result="Success" success="True" time="0.008" asserts="82" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSplitterBox.DefaultState" executed="True" result="Success" success="True" time="0.002" asserts="51" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSplitterBox.MouseActions" executed="True" result="Success" success="True" time="0.007" asserts="6" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSplitterBox.OrientationAffectsLayout" executed="True" result="Success" success="True" time="0.001" asserts="25" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSplitterBox.PointToSplit" executed="True" result="Success" success="True" time="0.001" asserts="75" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestSplitterBox.SplitterDistance" executed="True" result="Success" success="True" time="0.001" asserts="81" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestStackTraceDisplay" executed="True" result="Success" success="True" time="0.057" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.Controls.TestStackTraceDisplay.CopyToClipBoard" executed="True" result="Success" success="True" time="0.044" asserts="4">
+ <properties>
+ <property name="APARTMENT_STATE" value="STA" />
+ </properties>
+ </test-case>
+ <test-case name="NUnit.UiException.Tests.Controls.TestStackTraceDisplay.DefaultState" executed="True" result="Success" success="True" time="0.002" asserts="10" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestStackTraceDisplay.FeedingDisplayWithGarbageDoesNotMakeItCrash" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.UiException.Tests.Controls.TestStackTraceDisplay.OnStackTraceChanged" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="Namespace" name="StackTraceAnalyzers" executed="True" result="Success" success="True" time="0.095" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="TestFunctionParser" executed="True" result="Success" success="True" time="0.021" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestFunctionParser.Test_Ability_To_Parse_Mono_Stack_Trace" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestFunctionParser.Test_Ability_To_Parse_Regular_Function_Values" executed="True" result="Success" success="True" time="0.001" asserts="7" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestFunctionParser.Test_Fail_To_Parse_Odd_Function_Values" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestFunctionParser.TestIErrorParser.Test_IErrorParser_Can_Throw_ArgsNullException" executed="True" result="Success" success="True" time="0.002" asserts="10" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestFunctionParser.TestIErrorParser.Test_IErrorParser_Can_Throw_ParserNullException" executed="True" result="Success" success="True" time="0.004" asserts="10" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestIErrorParser" executed="True" result="Success" success="True" time="0.005" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestIErrorParser.Test_IErrorParser_Can_Throw_ArgsNullException" executed="True" result="Success" success="True" time="0.001" asserts="10" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestIErrorParser.Test_IErrorParser_Can_Throw_ParserNullException" executed="True" result="Success" success="True" time="0.000" asserts="10" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestLineNumberParser" executed="True" result="Success" success="True" time="0.012" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestLineNumberParser.Test_Ability_To_Parse_Regular_Line_Number_Values" executed="True" result="Success" success="True" time="0.001" asserts="10" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestLineNumberParser.Test_Ability_To_Reject_Odd_Line_Number_Values" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestLineNumberParser.TestIErrorParser.Test_IErrorParser_Can_Throw_ArgsNullException" executed="True" result="Success" success="True" time="0.001" asserts="10" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestLineNumberParser.TestIErrorParser.Test_IErrorParser_Can_Throw_ParserNullException" executed="True" result="Success" success="True" time="0.000" asserts="10" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestPathParser" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestPathParser.Test_Ability_To_Handle_Unix_Path_Like_Values" executed="True" result="Success" success="True" time="0.001" asserts="4" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestPathParser.Test_Ability_To_Handle_Windows_Path_Like_Values" executed="True" result="Success" success="True" time="0.000" asserts="4" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestPathParser.TestIErrorParser.Test_IErrorParser_Can_Throw_ArgsNullException" executed="True" result="Success" success="True" time="0.001" asserts="12" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestPathParser.TestIErrorParser.Test_IErrorParser_Can_Throw_ParserNullException" executed="True" result="Success" success="True" time="0.000" asserts="12" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestUnixPathParser" executed="True" result="Success" success="True" time="0.012" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestUnixPathParser.Test_Ability_To_Parse_Regular_Unix_Like_Path_Values" executed="True" result="Success" success="True" time="0.002" asserts="21" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestUnixPathParser.Test_Inability_To_Parse_Non_Unix_Like_Path_Values" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestUnixPathParser.TestIErrorParser.Test_IErrorParser_Can_Throw_ArgsNullException" executed="True" result="Success" success="True" time="0.001" asserts="11" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestUnixPathParser.TestIErrorParser.Test_IErrorParser_Can_Throw_ParserNullException" executed="True" result="Success" success="True" time="0.000" asserts="11" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestWindowsPathParser" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestWindowsPathParser.Test_Ability_To_Parse_Regular_Windows_Path" executed="True" result="Success" success="True" time="0.001" asserts="21" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestWindowsPathParser.Test_Inability_To_Parse_Non_Windows_Like_Path_Values" executed="True" result="Success" success="True" time="0.001" asserts="6" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestWindowsPathParser.TestIErrorParser.Test_IErrorParser_Can_Throw_ArgsNullException" executed="True" result="Success" success="True" time="0.001" asserts="11" />
+ <test-case name="NUnit.UiException.Tests.StackTraceAnalyzers.TestWindowsPathParser.TestIErrorParser.Test_IErrorParser_Can_Throw_ParserNullException" executed="True" result="Success" success="True" time="0.001" asserts="11" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestDefaultTextManager" executed="True" result="Success" success="True" time="0.012" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.TestDefaultTextManager.Test_CodeBlockCollection" executed="True" result="Success" success="True" time="0.004" asserts="15" />
+ <test-case name="NUnit.UiException.Tests.TestDefaultTextManager.Test_Default" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.TestDefaultTextManager.Test_MaxLength" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestErrorItem" executed="True" result="Success" success="True" time="0.033" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.TestErrorItem.Can_Set_Properties" executed="True" result="Success" success="True" time="0.001" asserts="10" />
+ <test-case name="NUnit.UiException.Tests.TestErrorItem.Ctor_2" executed="True" result="Success" success="True" time="0.001" asserts="10" />
+ <test-case name="NUnit.UiException.Tests.TestErrorItem.Ctor_Throws_NullPathException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.TestErrorItem.Ctor_With_Line_0" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.TestErrorItem.ReadFile" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.TestErrorItem.ReadFile_Throws_FileNotExistException" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.TestErrorItem.Test_Equals" executed="True" result="Success" success="True" time="0.002" asserts="8" />
+ <test-case name="NUnit.UiException.Tests.TestErrorItem.Test_FileExtension" executed="True" result="Success" success="True" time="0.000" asserts="5" />
+ <test-case name="NUnit.UiException.Tests.TestErrorItem.Test_MethodName" executed="True" result="Success" success="True" time="0.002" asserts="15" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestErrorItemCollection" executed="True" result="Success" success="True" time="0.020" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.TestErrorItemCollection.Test_Add_Throws_NullItemException" executed="True" result="Success" success="True" time="0.003" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.TestErrorItemCollection.Test_Clear" executed="True" result="Success" success="True" time="0.002" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.TestErrorItemCollection.Test_Contains" executed="True" result="Success" success="True" time="0.002" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.TestErrorItemCollection.Test_TraceItems" executed="True" result="Success" success="True" time="0.004" asserts="7" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestPaintLineLocation" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.TestPaintLineLocation.Test_Equals" executed="True" result="Success" success="True" time="0.002" asserts="8" />
+ <test-case name="NUnit.UiException.Tests.TestPaintLineLocation.Test_PaintLineLocation" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.TestPaintLineLocation.Test_SetText_Throws_NullTextException" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestStackTraceParser" executed="True" result="Success" success="True" time="0.034" asserts="0">
+ <results>
+ <test-case name="NUnit.UiException.Tests.TestStackTraceParser.Test_Ability_To_Handle_Different_Path_System_Syntaxes" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.TestStackTraceParser.Test_Ability_To_Handle_Files_With_Unknown_Extension" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.TestStackTraceParser.Test_Analysis_Does_Not_Depend_Upon_File_Extension" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.TestStackTraceParser.Test_Default" executed="True" result="Success" success="True" time="0.000" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.TestStackTraceParser.Test_English_Stack" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.TestStackTraceParser.Test_Missing_Line_Number" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ <test-case name="NUnit.UiException.Tests.TestStackTraceParser.Test_Parse" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.UiException.Tests.TestStackTraceParser.Test_Parse_MultipleExtension" executed="True" result="Success" success="True" time="0.002" asserts="6" />
+ <test-case name="NUnit.UiException.Tests.TestStackTraceParser.Test_Parse_Null" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ <test-case name="NUnit.UiException.Tests.TestStackTraceParser.Test_Parse_With_Real_Life_Samples" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ <test-case name="NUnit.UiException.Tests.TestStackTraceParser.Test_Trace_When_Missing_File" executed="True" result="Success" success="True" time="0.001" asserts="5" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="Assembly" name="D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.uikit.tests.dll" executed="True" result="Success" success="True" time="2.630" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="NUnit" executed="True" result="Success" success="True" time="2.630" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="UiKit" executed="True" result="Success" success="True" time="2.630" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Tests" executed="True" result="Success" success="True" time="2.629" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="AddConfigurationDialogTests" executed="True" result="Success" success="True" time="0.349" asserts="0">
+ <results>
+ <test-case name="NUnit.UiKit.Tests.AddConfigurationDialogTests.CheckComboBox" executed="True" result="Success" success="True" time="0.241" asserts="5" />
+ <test-case name="NUnit.UiKit.Tests.AddConfigurationDialogTests.CheckForControls" executed="True" result="Success" success="True" time="0.002" asserts="0" />
+ <test-case name="NUnit.UiKit.Tests.AddConfigurationDialogTests.CheckTextBox" executed="True" result="Success" success="True" time="0.002" asserts="1" />
+ <test-case name="NUnit.UiKit.Tests.AddConfigurationDialogTests.TestComplexEntry" executed="True" result="Success" success="True" time="0.075" asserts="2" />
+ <test-case name="NUnit.UiKit.Tests.AddConfigurationDialogTests.TestSimpleEntry" executed="True" result="Success" success="True" time="0.018" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ErrorDisplayTests" executed="True" result="Success" success="True" time="0.042" asserts="0">
+ <results>
+ <test-case name="NUnit.UiKit.Tests.ErrorDisplayTests.ControlsArePositionedCorrectly" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.UiKit.Tests.ErrorDisplayTests.ControlsExist" executed="True" result="Success" success="True" time="0.000" asserts="0" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="LongRunningOperationDisplayTests" executed="True" result="Success" success="True" time="0.021" asserts="0">
+ <results>
+ <test-case name="NUnit.UiKit.Tests.LongRunningOperationDisplayTests.CreateDisplay" executed="True" result="Success" success="True" time="0.020" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ProgressBarTests" executed="True" result="Success" success="True" time="0.061" asserts="0">
+ <results>
+ <test-case name="NUnit.UiKit.Tests.ProgressBarTests.TestProgressDisplay" executed="True" result="Success" success="True" time="0.060" asserts="5" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="RecentFileMenuHandlerTests" executed="True" result="Success" success="True" time="0.013" asserts="0">
+ <results>
+ <test-case name="NUnit.UiKit.Tests.RecentFileMenuHandlerTests.DisableOnLoadWhenEmpty" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.UiKit.Tests.RecentFileMenuHandlerTests.EnableOnLoadWhenNotEmpty" executed="True" result="Success" success="True" time="0.003" asserts="1" />
+ <test-case name="NUnit.UiKit.Tests.RecentFileMenuHandlerTests.LoadMenuItems" executed="True" result="Success" success="True" time="0.001" asserts="2" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="StatusBarTests" executed="True" result="Success" success="True" time="0.250" asserts="0">
+ <results>
+ <test-case name="NUnit.UiKit.Tests.StatusBarTests.TestConstruction" executed="True" result="Success" success="True" time="0.065" asserts="5" />
+ <test-case name="NUnit.UiKit.Tests.StatusBarTests.TestFinalDisplay" executed="True" result="Success" success="True" time="0.073" asserts="5" />
+ <test-case name="NUnit.UiKit.Tests.StatusBarTests.TestInitialization" executed="True" result="Success" success="True" time="0.044" asserts="10" />
+ <test-case name="NUnit.UiKit.Tests.StatusBarTests.TestProgressDisplay" executed="True" result="Success" success="True" time="0.057" asserts="5" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestSuiteTreeNodeTests" executed="True" result="Success" success="True" time="0.096" asserts="0">
+ <results>
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeNodeTests.ClearNestedResults" executed="True" result="Success" success="True" time="0.021" asserts="8" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeNodeTests.ClearResult" executed="True" result="Success" success="True" time="0.006" asserts="5" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeNodeTests.ConstructFromTestInfo" executed="True" result="Success" success="True" time="0.006" asserts="6" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeNodeTests.ResultNotSet" executed="True" result="Success" success="True" time="0.006" asserts="2" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeNodeTests.SetResult_Failure" executed="True" result="Success" success="True" time="0.007" asserts="3" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeNodeTests.SetResult_Ignore" executed="True" result="Success" success="True" time="0.006" asserts="4" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeNodeTests.SetResult_Inconclusive" executed="True" result="Success" success="True" time="0.006" asserts="4" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeNodeTests.SetResult_Skipped" executed="True" result="Success" success="True" time="0.006" asserts="3" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeNodeTests.SetResult_Success" executed="True" result="Success" success="True" time="0.006" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestSuiteTreeViewReloadTests" executed="True" result="Success" success="True" time="0.906" asserts="0">
+ <results>
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewReloadTests.CanReloadAfterChangingOrder" executed="True" result="Success" success="True" time="0.239" asserts="178" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewReloadTests.CanReloadAfterDeletingBranch" executed="True" result="Success" success="True" time="0.056" asserts="137" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewReloadTests.CanReloadAfterDeletingOneTestCase" executed="True" result="Success" success="True" time="0.056" asserts="175" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewReloadTests.CanReloadAfterDeletingThreeTestCases" executed="True" result="Success" success="True" time="0.065" asserts="169" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewReloadTests.CanReloadAfterInsertingTestCase" executed="True" result="Success" success="True" time="0.059" asserts="181" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewReloadTests.CanReloadAfterInsertingTestFixture" executed="True" result="Success" success="True" time="0.056" asserts="182" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewReloadTests.CanReloadAfterMultipleChanges" executed="True" result="Success" success="True" time="0.058" asserts="179" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewReloadTests.CanReloadAfterTurningOffAutoNamespaces" executed="True" result="Success" success="True" time="0.107" asserts="159" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewReloadTests.CanReloadWithoutChange" executed="True" result="Success" success="True" time="0.061" asserts="177" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewReloadTests.ReloadTreeWithWrongTest" executed="True" result="Success" success="True" time="0.057" asserts="0" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewReloadTests.VerifyCheckTreeWorks" executed="True" result="Success" success="True" time="0.059" asserts="177" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestSuiteTreeViewTests" executed="True" result="Success" success="True" time="0.324" asserts="0">
+ <results>
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewTests.BuildFromResult" executed="True" result="Success" success="True" time="0.068" asserts="15" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewTests.BuildTreeView" executed="True" result="Success" success="True" time="0.061" asserts="5" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewTests.ClearTree" executed="True" result="Success" success="True" time="0.058" asserts="1" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewTests.ProcessChecks" executed="True" result="Success" success="True" time="0.062" asserts="7" />
+ <test-case name="NUnit.UiKit.Tests.TestSuiteTreeViewTests.SetTestResult" executed="True" result="Success" success="True" time="0.063" asserts="3" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="TestTreeTests" executed="True" result="Success" success="True" time="0.054" asserts="0">
+ <results>
+ <test-case name="NUnit.UiKit.Tests.TestTreeTests.SameCategoryShouldNotBeSelectedMoreThanOnce" executed="True" result="Success" success="True" time="0.053" asserts="4" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="VisualStateTests" executed="True" result="Success" success="True" time="0.480" asserts="0">
+ <results>
+ <test-case name="NUnit.UiKit.Tests.VisualStateTests.SaveAndRestoreVisualState" executed="True" result="Success" success="True" time="0.480" asserts="5" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="Assembly" name="D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit-gui.tests.dll" executed="True" result="Success" success="True" time="0.356" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="NUnit" executed="True" result="Success" success="True" time="0.355" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Gui" executed="True" result="Success" success="True" time="0.353" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Tests" executed="True" result="Success" success="True" time="0.353" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="CommandLineTests" executed="True" result="Success" success="True" time="0.046" asserts="0">
+ <results>
+ <test-case name="NUnit.Gui.Tests.CommandLineTests.AssemblyName" executed="True" result="Success" success="True" time="0.016" asserts="1" />
+ <test-case name="NUnit.Gui.Tests.CommandLineTests.Help" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Gui.Tests.CommandLineTests.HelpTextUsesCorrectDelimiterForPlatform" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Gui.Tests.CommandLineTests.InvalidArgs" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Gui.Tests.CommandLineTests.InvalidCommandLineParms" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Gui.Tests.CommandLineTests.NoNameValuePairs" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ <test-case name="NUnit.Gui.Tests.CommandLineTests.NoParametersCount" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Gui.Tests.CommandLineTests.ShortHelp" executed="True" result="Success" success="True" time="0.001" asserts="1" />
+ <test-case name="NUnit.Gui.Tests.CommandLineTests.ValidateSuccessful" executed="True" result="Success" success="True" time="0.000" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ExceptionDetailsFormTests" executed="True" result="Success" success="True" time="0.061" asserts="0">
+ <results>
+ <test-case name="NUnit.Gui.Tests.ExceptionDetailsFormTests.ControlsArePositionedCorrectly" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Gui.Tests.ExceptionDetailsFormTests.ControlsExist" executed="True" result="Success" success="True" time="0.001" asserts="0" />
+ <test-case name="NUnit.Gui.Tests.ExceptionDetailsFormTests.MessageDisplaysCorrectly" executed="True" result="Success" success="True" time="0.032" asserts="1" />
+ </results>
+ </test-suite>
+ <test-suite type="TestFixture" name="ProjectEditorTests" executed="True" result="Success" success="True" time="0.240" asserts="0">
+ <results>
+ <test-case name="NUnit.Gui.Tests.ProjectEditorTests.CheckControls" executed="True" result="Success" success="True" time="0.151" asserts="0" />
+ <test-case name="NUnit.Gui.Tests.ProjectEditorTests.InitialFieldValues" executed="True" result="Success" success="True" time="0.085" asserts="2" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ <test-suite type="Assembly" name="D:\Dev\NUnit\nunit-2.5\work\build\net\2.0\release\tests/nunit.fixtures.tests.dll" executed="True" result="Success" success="True" time="0.021" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="NUnit" executed="True" result="Success" success="True" time="0.021" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Fixtures" executed="True" result="Success" success="True" time="0.021" asserts="0">
+ <results>
+ <test-suite type="Namespace" name="Tests" executed="True" result="Success" success="True" time="0.020" asserts="0">
+ <results>
+ <test-suite type="TestFixture" name="TestTreeTests" executed="True" result="Success" success="True" time="0.020" asserts="0">
+ <results>
+ <test-case name="NUnit.Fixtures.Tests.TestTreeTests.MatchingTreesAreEqual" executed="True" result="Success" success="True" time="0.001" asserts="3" />
+ <test-case name="NUnit.Fixtures.Tests.TestTreeTests.NonMatchingTreesAreNotEqual" executed="True" result="Success" success="True" time="0.000" asserts="3" />
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+ </results>
+ </test-suite>
+</test-results>
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.conf b/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.conf new file mode 100755 index 0000000..b4cf550 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.conf @@ -0,0 +1,4 @@ +<AgentConfig>
+ <Port>8080</Port>
+ <PathToAssemblies>.</PathToAssemblies>
+</AgentConfig>
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.log.conf b/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.log.conf new file mode 100755 index 0000000..d340cad --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/agent.log.conf @@ -0,0 +1,18 @@ +<log4net>
+ <!-- A1 is set to be a ConsoleAppender -->
+ <appender name="A1" type="log4net.Appender.ConsoleAppender">
+
+ <!-- A1 uses PatternLayout -->
+ <layout type="log4net.Layout.PatternLayout">
+ <!-- Print the date in ISO 8601 format -->
+ <conversionPattern value="%-5level %logger - %message%newline" />
+ </layout>
+ </appender>
+
+ <!-- Set root logger level to DEBUG and its only appender to A1 -->
+ <root>
+ <level value="DEBUG" />
+ <appender-ref ref="A1" />
+ </root>
+
+</log4net>
diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/launcher.log.conf b/SendGrid/packages/NUnit.2.5.10.11092/tools/launcher.log.conf new file mode 100755 index 0000000..d340cad --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/launcher.log.conf @@ -0,0 +1,18 @@ +<log4net>
+ <!-- A1 is set to be a ConsoleAppender -->
+ <appender name="A1" type="log4net.Appender.ConsoleAppender">
+
+ <!-- A1 uses PatternLayout -->
+ <layout type="log4net.Layout.PatternLayout">
+ <!-- Print the date in ISO 8601 format -->
+ <conversionPattern value="%-5level %logger - %message%newline" />
+ </layout>
+ </appender>
+
+ <!-- Set root logger level to DEBUG and its only appender to A1 -->
+ <root>
+ <level value="DEBUG" />
+ <appender-ref ref="A1" />
+ </root>
+
+</log4net>
diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Failure.png b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Failure.png Binary files differnew file mode 100755 index 0000000..2e400b2 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Failure.png diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Ignored.png b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Ignored.png Binary files differnew file mode 100755 index 0000000..478efbf --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Ignored.png diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Inconclusive.png b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Inconclusive.png Binary files differnew file mode 100755 index 0000000..4807b7c --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Inconclusive.png diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Skipped.png b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Skipped.png Binary files differnew file mode 100755 index 0000000..7c9fc64 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Skipped.png diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Success.png b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Success.png Binary files differnew file mode 100755 index 0000000..2a30150 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/Success.png diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/fit.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/fit.dll Binary files differnew file mode 100755 index 0000000..40bbef0 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/fit.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/log4net.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/log4net.dll Binary files differnew file mode 100755 index 0000000..20a2e1c --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/log4net.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-console-runner.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-console-runner.dll Binary files differnew file mode 100755 index 0000000..1709ce7 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-console-runner.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-gui-runner.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-gui-runner.dll Binary files differnew file mode 100755 index 0000000..35efa73 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit-gui-runner.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.dll Binary files differnew file mode 100755 index 0000000..a1dd698 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.interfaces.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.interfaces.dll Binary files differnew file mode 100755 index 0000000..0ac8788 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.core.interfaces.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.fixtures.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.fixtures.dll Binary files differnew file mode 100755 index 0000000..8fd1932 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.fixtures.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uiexception.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uiexception.dll Binary files differnew file mode 100755 index 0000000..610c170 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uiexception.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uikit.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uikit.dll Binary files differnew file mode 100755 index 0000000..9087db2 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.uikit.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.util.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.util.dll Binary files differnew file mode 100755 index 0000000..0b315c2 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/lib/nunit.util.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe Binary files differnew file mode 100755 index 0000000..ebcee1b --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe.config new file mode 100755 index 0000000..84c2906 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent-x86.exe.config @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+
+ <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="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>
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe Binary files differnew file mode 100755 index 0000000..ec41f32 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe.config new file mode 100755 index 0000000..84c2906 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-agent.exe.config @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+
+ <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="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>
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe Binary files differnew file mode 100755 index 0000000..e08ac9c --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe.config new file mode 100755 index 0000000..ce92b5b --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console-x86.exe.config @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+
+ <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="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>
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe Binary files differnew file mode 100755 index 0000000..1544a9d --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe.config new file mode 100755 index 0000000..ce92b5b --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-console.exe.config @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+
+ <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="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>
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe Binary files differnew file mode 100755 index 0000000..fd342c0 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe.config new file mode 100755 index 0000000..6c0320e --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit-x86.exe.config @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+ <!--
+ Application settings for NUnit-gui.exe. Do NOT put settings
+ for use by your tests here.
+ -->
+ <appSettings>
+ <!--
+ Uncomment to specify the url to be used for help. If not used, the
+ default value is something like
+ file://localhost/C:/Program Files/NUnit 2.2/doc/index.html
+ This setting is provided in case your default browser doesn't
+ support this format.
+ -->
+ <!-- <add key="helpUrl" value="http://www.nunit.org" /> -->
+ </appSettings>
+
+ <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="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>
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe Binary files differnew file mode 100755 index 0000000..ad8b08a --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe.config new file mode 100755 index 0000000..6c0320e --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.exe.config @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="utf-8"?>
+<configuration>
+ <!--
+ Application settings for NUnit-gui.exe. Do NOT put settings
+ for use by your tests here.
+ -->
+ <appSettings>
+ <!--
+ Uncomment to specify the url to be used for help. If not used, the
+ default value is something like
+ file://localhost/C:/Program Files/NUnit 2.2/doc/index.html
+ This setting is provided in case your default browser doesn't
+ support this format.
+ -->
+ <!-- <add key="helpUrl" value="http://www.nunit.org" /> -->
+ </appSettings>
+
+ <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="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>
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.framework.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.framework.dll Binary files differnew file mode 100755 index 0000000..6856e51 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/nunit.framework.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe Binary files differnew file mode 100755 index 0000000..7a555e1 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe.config new file mode 100755 index 0000000..5ed5f7b --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-agent.exe.config @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="Windows-1252"?>
+<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>
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe Binary files differnew file mode 100755 index 0000000..c70e58e --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe.config new file mode 100755 index 0000000..5ed5f7b --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit-launcher.exe.config @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="Windows-1252"?>
+<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>
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.framework.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.framework.dll Binary files differnew file mode 100755 index 0000000..6c105d7 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.framework.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.tests.dll b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.tests.dll Binary files differnew file mode 100755 index 0000000..dce018a --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/pnunit.tests.dll diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe b/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe Binary files differnew file mode 100755 index 0000000..a794458 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe.config b/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe.config new file mode 100755 index 0000000..35909b4 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/runFile.exe.config @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+ <startup>
+ <supportedRuntime version="v2.0.50727" />
+ <supportedRuntime version="v2.0.50215" />
+ <supportedRuntime version="v2.0.40607" />
+ <supportedRuntime version="v1.1.4322" />
+ <supportedRuntime version="v1.0.3705" />
+
+ <requiredRuntime version="v1.0.3705" />
+ </startup>
+
+<!--
+ The following <runtime> section allows running nunit tests under
+ .NET 1.0 by redirecting assemblies. The appliesTo attribute
+ causes the section to be ignored except under .NET 1.0.
+ -->
+ <runtime>
+ <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"
+ appliesTo="v1.0.3705">
+ <dependentAssembly>
+ <assemblyIdentity name="System" publicKeyToken="b77a5c561934e089" culture="" />
+ <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Data" publicKeyToken="b77a5c561934e089" culture="" />
+ <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Drawing" publicKeyToken="b03f5f7f11d50a3a" culture="" />
+ <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Windows.Forms" publicKeyToken="b77a5c561934e089" culture="" />
+ <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Xml" publicKeyToken="b77a5c561934e089" culture="" />
+ <bindingRedirect oldVersion="1.0.5000.0" newVersion="1.0.3300.0" />
+ </dependentAssembly>
+ </assemblyBinding>
+ </runtime>
+</configuration>
diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/runpnunit.bat b/SendGrid/packages/NUnit.2.5.10.11092/tools/runpnunit.bat new file mode 100755 index 0000000..6efc8b4 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/runpnunit.bat @@ -0,0 +1,2 @@ +start pnunit-agent agent.conf
+pnunit-launcher test.conf
\ No newline at end of file diff --git a/SendGrid/packages/NUnit.2.5.10.11092/tools/test.conf b/SendGrid/packages/NUnit.2.5.10.11092/tools/test.conf new file mode 100755 index 0000000..a35e718 --- /dev/null +++ b/SendGrid/packages/NUnit.2.5.10.11092/tools/test.conf @@ -0,0 +1,24 @@ +<TestGroup>
+ <ParallelTests>
+
+ <ParallelTest>
+ <Name>Testing</Name>
+ <Tests>
+ <TestConf>
+ <Name>Testing</Name>
+ <Assembly>pnunit.tests.dll</Assembly>
+ <TestToRun>TestLibraries.Testing.EqualTo19</TestToRun>
+ <Machine>localhost:8080</Machine>
+ <TestParams>
+ <string>..\server</string> <!-- server dir -->
+ <string></string> <!-- database server -->
+ <string></string><!-- conn string -->
+ </TestParams>
+ </TestConf>
+
+ </Tests>
+ </ParallelTest>
+
+
+ </ParallelTests>
+</TestGroup>
\ No newline at end of file diff --git a/SendGrid/packages/repositories.config b/SendGrid/packages/repositories.config new file mode 100755 index 0000000..06cd8d9 --- /dev/null +++ b/SendGrid/packages/repositories.config @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="utf-8"?>
+<repositories>
+ <repository path="..\Tests\packages.config" />
+</repositories>
\ No newline at end of file |