updated xunit
--HG-- extra : convert_revision : svn%3A11aa8812-6de0-41ed-92bd-ec94540cc92c%4047860
This commit is contained in:
Родитель
70b110118e
Коммит
31da7a67ff
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
|
@ -1,95 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>xunit.runner.utility</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Xunit.ExecutorWrapper">
|
||||
<summary>
|
||||
Wraps calls to the Executor. Used by runners to perform version-resilient test
|
||||
enumeration and execution.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.#ctor(System.String,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Xunit.ExecutorWrapper"/> class.
|
||||
</summary>
|
||||
<param name="assemblyFilename">The assembly filename.</param>
|
||||
<param name="configFilename">The config filename. If null, the default config filename will be used.</param>
|
||||
<param name="shadowCopy">Set to true to enable shadow copying; false, otherwise.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.Dispose">
|
||||
<summary>
|
||||
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.EnumerateTests">
|
||||
<summary>
|
||||
Enumerates the tests in an assembly.
|
||||
</summary>
|
||||
<returns>The fully-formed assembly node of the XML</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.GetAssemblyTestCount">
|
||||
<summary>
|
||||
Gets a count of the tests in the assembly.
|
||||
</summary>
|
||||
<returns>Returns the number of tests, if known; returns -1 if not known. May not represent
|
||||
an exact count, but should be a best effort guess by the framework.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.RunAssembly(System.Predicate{System.Xml.XmlNode})">
|
||||
<summary>
|
||||
Runs all the tests in an assembly.
|
||||
</summary>
|
||||
<param name="callback">The callback which is called as each test/class/assembly is
|
||||
finished, providing XML nodes that are part of the xUnit.net XML output format.
|
||||
Test runs can be cancelled by returning false to the callback. If null, there are
|
||||
no status callbacks (and cancellation isn't possible).</param>
|
||||
<returns>Returns the fully-formed assembly node for the assembly that was just run.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.RunClass(System.String,System.Predicate{System.Xml.XmlNode})">
|
||||
<summary>
|
||||
Runs all the tests in the given class.
|
||||
</summary>
|
||||
<param name="type">The type.</param>
|
||||
<param name="callback">The callback which is called as each test/class is
|
||||
finished, providing XML nodes that are part of the xUnit.net XML output format.
|
||||
Test runs can be cancelled by returning false to the callback. If null, there are
|
||||
no status callbacks (and cancellation isn't possible).</param>
|
||||
<returns>Returns the fully-formed class node for the class that was just run.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.RunTest(System.String,System.String,System.Predicate{System.Xml.XmlNode})">
|
||||
<summary>
|
||||
Runs a single test in a class.
|
||||
</summary>
|
||||
<param name="type">The type to run.</param>
|
||||
<param name="method">The method to run.</param>
|
||||
<param name="callback">The callback which is called as each test/class is
|
||||
finished, providing XML nodes that are part of the xUnit.net XML output format.
|
||||
Test runs can be cancelled by returning false to the callback. If null, there are
|
||||
no status callbacks (and cancellation isn't possible).</param>
|
||||
<returns>Returns the fully-formed class node for the class of the test that was just run.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.RunTests(System.String,System.Collections.Generic.List{System.String},System.Predicate{System.Xml.XmlNode})">
|
||||
<summary>
|
||||
Runs several tests in a single class.
|
||||
</summary>
|
||||
<param name="type">The type.</param>
|
||||
<param name="methods">The methods to run.</param>
|
||||
<param name="callback">The callback which is called as each test/class is
|
||||
finished, providing XML nodes that are part of the xUnit.net XML output format.
|
||||
Test runs can be cancelled by returning false to the callback. If null, there are
|
||||
no status callbacks (and cancellation isn't possible).</param>
|
||||
<returns>Returns the fully-formed class node for the class of the tests that were just run.</returns>
|
||||
</member>
|
||||
<member name="P:Xunit.ExecutorWrapper.AssemblyFilename">
|
||||
<summary>
|
||||
Gets the full pathname to the assembly under test.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Xunit.ExecutorWrapper.XunitVersion">
|
||||
<summary>
|
||||
Gets the version of xunit.dll used by the test assembly.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
|
@ -1,289 +0,0 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>xunitext35</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:XunitExt.BooleanAssertionExtensions">
|
||||
<summary>
|
||||
Extensions which provide assertions to classes derived from <see cref="T:System.Boolean"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.BooleanAssertionExtensions.ShouldBeFalse(System.Boolean)">
|
||||
<summary>
|
||||
Verifies that the condition is false.
|
||||
</summary>
|
||||
<param name="condition">The condition to be tested</param>
|
||||
<exception cref="T:Xunit.FalseException">Thrown if the condition is not false</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.BooleanAssertionExtensions.ShouldBeFalse(System.Boolean,System.String)">
|
||||
<summary>
|
||||
Verifies that the condition is false.
|
||||
</summary>
|
||||
<param name="condition">The condition to be tested</param>
|
||||
<param name="userMessage">The message to show when the condition is not false</param>
|
||||
<exception cref="T:Xunit.FalseException">Thrown if the condition is not false</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.BooleanAssertionExtensions.ShouldBeTrue(System.Boolean)">
|
||||
<summary>
|
||||
Verifies that an expression is true.
|
||||
</summary>
|
||||
<param name="condition">The condition to be inspected</param>
|
||||
<exception cref="T:Xunit.TrueException">Thrown when the condition is false</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.BooleanAssertionExtensions.ShouldBeTrue(System.Boolean,System.String)">
|
||||
<summary>
|
||||
Verifies that an expression is true.
|
||||
</summary>
|
||||
<param name="condition">The condition to be inspected</param>
|
||||
<param name="userMessage">The message to be shown when the condition is false</param>
|
||||
<exception cref="T:Xunit.TrueException">Thrown when the condition is false</exception>
|
||||
</member>
|
||||
<member name="T:XunitExt.CollectionAssertExtensions">
|
||||
<summary>
|
||||
Extensions which provide assertions to classes derived from <see cref="T:System.Collections.IEnumerable"/> and <see cref="T:System.Collections.Generic.IEnumerable`1"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.CollectionAssertExtensions.ShouldBeEmpty(System.Collections.IEnumerable)">
|
||||
<summary>
|
||||
Verifies that a collection is empty.
|
||||
</summary>
|
||||
<param name="collection">The collection to be inspected</param>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown when the collection is null</exception>
|
||||
<exception cref="T:Xunit.EmptyException">Thrown when the collection is not empty</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.CollectionAssertExtensions.ShouldContain``1(System.Collections.Generic.IEnumerable{``0},``0)">
|
||||
<summary>
|
||||
Verifies that a collection contains a given object.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the object to be verified</typeparam>
|
||||
<param name="collection">The collection to be inspected</param>
|
||||
<param name="expected">The object expected to be in the collection</param>
|
||||
<exception cref="T:Xunit.ContainsException">Thrown when the object is not present in the collection</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.CollectionAssertExtensions.ShouldContain``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IComparer{``0})">
|
||||
<summary>
|
||||
Verifies that a collection contains a given object, using a comparer.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the object to be verified</typeparam>
|
||||
<param name="collection">The collection to be inspected</param>
|
||||
<param name="expected">The object expected to be in the collection</param>
|
||||
<param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
|
||||
<exception cref="T:Xunit.ContainsException">Thrown when the object is not present in the collection</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.CollectionAssertExtensions.ShouldNotBeEmpty(System.Collections.IEnumerable)">
|
||||
<summary>
|
||||
Verifies that a collection is not empty.
|
||||
</summary>
|
||||
<param name="collection">The collection to be inspected</param>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown when a null collection is passed</exception>
|
||||
<exception cref="T:Xunit.NotEmptyException">Thrown when the collection is empty</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.CollectionAssertExtensions.ShouldNotContain``1(System.Collections.Generic.IEnumerable{``0},``0)">
|
||||
<summary>
|
||||
Verifies that a collection does not contain a given object.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the object to be compared</typeparam>
|
||||
<param name="expected">The object that is expected not to be in the collection</param>
|
||||
<param name="collection">The collection to be inspected</param>
|
||||
<exception cref="T:Xunit.DoesNotContainException">Thrown when the object is present inside the container</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.CollectionAssertExtensions.ShouldNotContain``1(System.Collections.Generic.IEnumerable{``0},``0,System.Collections.Generic.IComparer{``0})">
|
||||
<summary>
|
||||
Verifies that a collection does not contain a given object, using a comparer.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the object to be compared</typeparam>
|
||||
<param name="expected">The object that is expected not to be in the collection</param>
|
||||
<param name="collection">The collection to be inspected</param>
|
||||
<param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
|
||||
<exception cref="T:Xunit.DoesNotContainException">Thrown when the object is present inside the container</exception>
|
||||
</member>
|
||||
<member name="T:XunitExt.ObjectAssertExtensions">
|
||||
<summary>
|
||||
Extensions which provide assertions to classes derived from <see cref="T:System.Object"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldBeInRange``1(``0,``0,``0)">
|
||||
<summary>
|
||||
Verifies that a value is within a given range.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the value to be compared</typeparam>
|
||||
<param name="actual">The actual value to be evaluated</param>
|
||||
<param name="low">The (inclusive) low value of the range</param>
|
||||
<param name="high">The (inclusive) high value of the range</param>
|
||||
<exception cref="T:Xunit.InRangeException">Thrown when the value is not in the given range</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldBeInRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
|
||||
<summary>
|
||||
Verifies that a value is within a given range, using a comparer.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the value to be compared</typeparam>
|
||||
<param name="actual">The actual value to be evaluated</param>
|
||||
<param name="low">The (inclusive) low value of the range</param>
|
||||
<param name="high">The (inclusive) high value of the range</param>
|
||||
<param name="comparer">The comparer used to evaluate the value's range</param>
|
||||
<exception cref="T:Xunit.InRangeException">Thrown when the value is not in the given range</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldBeNull(System.Object)">
|
||||
<summary>
|
||||
Verifies that an object reference is null.
|
||||
</summary>
|
||||
<param name="object">The object to be inspected</param>
|
||||
<exception cref="T:Xunit.NullException">Thrown when the object reference is not null</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldBeSameAs(System.Object,System.Object)">
|
||||
<summary>
|
||||
Verifies that two objects are the same instance.
|
||||
</summary>
|
||||
<param name="actual">The actual object instance</param>
|
||||
<param name="expected">The expected object instance</param>
|
||||
<exception cref="T:Xunit.SameException">Thrown when the objects are not the same instance</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldBeType``1(System.Object)">
|
||||
<summary>
|
||||
Verifies that an object is exactly the given type (and not a derived type).
|
||||
</summary>
|
||||
<typeparam name="T">The type the object should be</typeparam>
|
||||
<param name="object">The object to be evaluated</param>
|
||||
<returns>The object, casted to type T when successful</returns>
|
||||
<exception cref="T:Xunit.IsTypeException">Thrown when the object is not the given type</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldBeType(System.Object,System.Type)">
|
||||
<summary>
|
||||
Verifies that an object is exactly the given type (and not a derived type).
|
||||
</summary>
|
||||
<param name="object">The object to be evaluated</param>
|
||||
<param name="expectedType">The type the object should be</param>
|
||||
<exception cref="T:Xunit.IsTypeException">Thrown when the object is not the given type</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldEqual``1(``0,``0)">
|
||||
<summary>
|
||||
Verifies that two objects are equal, using a default comparer.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the objects to be compared</typeparam>
|
||||
<param name="actual">The value to be compared against</param>
|
||||
<param name="expected">The expected value</param>
|
||||
<exception cref="T:Xunit.EqualException">Thrown when the objects are not equal</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldEqual``1(``0,``0,System.Collections.Generic.IComparer{``0})">
|
||||
<summary>
|
||||
Verifies that two objects are equal, using a custom comparer.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the objects to be compared</typeparam>
|
||||
<param name="actual">The value to be compared against</param>
|
||||
<param name="expected">The expected value</param>
|
||||
<param name="comparer">The comparer used to compare the two objects</param>
|
||||
<exception cref="T:Xunit.EqualException">Thrown when the objects are not equal</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldNotBeInRange``1(``0,``0,``0)">
|
||||
<summary>
|
||||
Verifies that a value is not within a given range, using the default comparer.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the value to be compared</typeparam>
|
||||
<param name="actual">The actual value to be evaluated</param>
|
||||
<param name="low">The (inclusive) low value of the range</param>
|
||||
<param name="high">The (inclusive) high value of the range</param>
|
||||
<exception cref="T:Xunit.NotInRangeException">Thrown when the value is in the given range</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldNotBeInRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
|
||||
<summary>
|
||||
Verifies that a value is not within a given range, using a comparer.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the value to be compared</typeparam>
|
||||
<param name="actual">The actual value to be evaluated</param>
|
||||
<param name="low">The (inclusive) low value of the range</param>
|
||||
<param name="high">The (inclusive) high value of the range</param>
|
||||
<param name="comparer">The comparer used to evaluate the value's range</param>
|
||||
<exception cref="T:Xunit.NotInRangeException">Thrown when the value is in the given range</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldNotBeNull(System.Object)">
|
||||
<summary>
|
||||
Verifies that an object reference is not null.
|
||||
</summary>
|
||||
<param name="object">The object to be validated</param>
|
||||
<exception cref="T:Xunit.NotNullException">Thrown when the object is not null</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldNotBeSameAs(System.Object,System.Object)">
|
||||
<summary>
|
||||
Verifies that two objects are not the same instance.
|
||||
</summary>
|
||||
<param name="actual">The actual object instance</param>
|
||||
<param name="expected">The expected object instance</param>
|
||||
<exception cref="T:Xunit.NotSameException">Thrown when the objects are the same instance</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldNotBeType``1(System.Object)">
|
||||
<summary>
|
||||
Verifies that an object is not exactly the given type.
|
||||
</summary>
|
||||
<typeparam name="T">The type the object should not be</typeparam>
|
||||
<param name="object">The object to be evaluated</param>
|
||||
<exception cref="T:Xunit.IsTypeException">Thrown when the object is the given type</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldNotBeType(System.Object,System.Type)">
|
||||
<summary>
|
||||
Verifies that an object is not exactly the given type.
|
||||
</summary>
|
||||
<param name="object">The object to be evaluated</param>
|
||||
<param name="expectedType">The type the object should not be</param>
|
||||
<exception cref="T:Xunit.IsTypeException">Thrown when the object is the given type</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldNotEqual``1(``0,``0)">
|
||||
<summary>
|
||||
Verifies that two objects are not equal, using a default comparer.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the objects to be compared</typeparam>
|
||||
<param name="actual">The actual object</param>
|
||||
<param name="expected">The expected object</param>
|
||||
<exception cref="T:Xunit.NotEqualException">Thrown when the objects are equal</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.ObjectAssertExtensions.ShouldNotEqual``1(``0,``0,System.Collections.Generic.IComparer{``0})">
|
||||
<summary>
|
||||
Verifies that two objects are not equal, using a custom comparer.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the objects to be compared</typeparam>
|
||||
<param name="actual">The actual object</param>
|
||||
<param name="expected">The expected object</param>
|
||||
<param name="comparer">The comparer used to examine the objects</param>
|
||||
<exception cref="T:Xunit.NotEqualException">Thrown when the objects are equal</exception>
|
||||
</member>
|
||||
<member name="T:XunitExt.StringAssertionExtensions">
|
||||
<summary>
|
||||
Extensions which provide assertions to classes derived from <see cref="T:System.String"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.StringAssertionExtensions.ShouldContain(System.String,System.String)">
|
||||
<summary>
|
||||
Verifies that a string contains a given sub-string, using the current culture.
|
||||
</summary>
|
||||
<param name="actualString">The string to be inspected</param>
|
||||
<param name="expectedSubString">The sub-string expected to be in the string</param>
|
||||
<exception cref="T:Xunit.ContainsException">Thrown when the sub-string is not present inside the string</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.StringAssertionExtensions.ShouldContain(System.String,System.String,System.StringComparison)">
|
||||
<summary>
|
||||
Verifies that a string contains a given sub-string, using the given comparison type.
|
||||
</summary>
|
||||
<param name="actualString">The string to be inspected</param>
|
||||
<param name="expectedSubString">The sub-string expected to be in the string</param>
|
||||
<param name="comparisonType">The type of string comparison to perform</param>
|
||||
<exception cref="T:Xunit.ContainsException">Thrown when the sub-string is not present inside the string</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.StringAssertionExtensions.ShouldNotContain(System.String,System.String)">
|
||||
<summary>
|
||||
Verifies that a string does not contain a given sub-string, using the current culture.
|
||||
</summary>
|
||||
<param name="actualString">The string to be inspected</param>
|
||||
<param name="expectedSubString">The sub-string which is expected not to be in the string</param>
|
||||
<exception cref="T:Xunit.DoesNotContainException">Thrown when the sub-string is present inside the string</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.StringAssertionExtensions.ShouldNotContain(System.String,System.String,System.StringComparison)">
|
||||
<summary>
|
||||
Verifies that a string does not contain a given sub-string, using the current culture.
|
||||
</summary>
|
||||
<param name="actualString">The string to be inspected</param>
|
||||
<param name="expectedSubString">The sub-string which is expected not to be in the string</param>
|
||||
<param name="comparisonType">The type of string comparison to perform</param>
|
||||
<exception cref="T:Xunit.DoesNotContainException">Thrown when the sub-string is present inside the given string</exception>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
|
@ -1,24 +1,24 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>xunitext</name>
|
||||
<name>xunit.extensions</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:XunitExt.Assertions">
|
||||
<member name="T:Xunit.Extensions.Assertions">
|
||||
<summary>
|
||||
A wrapper for Assert which is used by <see cref="T:XunitExt.TestClass"/>.
|
||||
A wrapper for Assert which is used by <see cref="T:Xunit.Extensions.TestClass"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Contains``1(``0,System.Collections.Generic.IEnumerable{``0})">
|
||||
<member name="M:Xunit.Extensions.Assertions.Contains``1(``0,System.Collections.Generic.IEnumerable{``0})">
|
||||
<summary>
|
||||
Verifies that a collection contains a given object.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the object to be verified</typeparam>
|
||||
<param name="expected">The object expected to be in the collection</param>
|
||||
<param name="collection">The collection to be inspected</param>
|
||||
<exception cref="T:Xunit.ContainsException">Thrown when the object is not present in the collection</exception>
|
||||
<exception cref="T:Xunit.Sdk.ContainsException">Thrown when the object is not present in the collection</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Contains``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0})">
|
||||
<member name="M:Xunit.Extensions.Assertions.Contains``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0})">
|
||||
<summary>
|
||||
Verifies that a collection contains a given object, using a comparer.
|
||||
</summary>
|
||||
|
@ -26,35 +26,35 @@
|
|||
<param name="expected">The object expected to be in the collection</param>
|
||||
<param name="collection">The collection to be inspected</param>
|
||||
<param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
|
||||
<exception cref="T:Xunit.ContainsException">Thrown when the object is not present in the collection</exception>
|
||||
<exception cref="T:Xunit.Sdk.ContainsException">Thrown when the object is not present in the collection</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Contains(System.String,System.String)">
|
||||
<member name="M:Xunit.Extensions.Assertions.Contains(System.String,System.String)">
|
||||
<summary>
|
||||
Verifies that a string contains a given sub-string, using the current culture.
|
||||
</summary>
|
||||
<param name="expectedSubString">The sub-string expected to be in the string</param>
|
||||
<param name="actualString">The string to be inspected</param>
|
||||
<exception cref="T:Xunit.ContainsException">Thrown when the sub-string is not present inside the string</exception>
|
||||
<exception cref="T:Xunit.Sdk.ContainsException">Thrown when the sub-string is not present inside the string</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Contains(System.String,System.String,System.StringComparison)">
|
||||
<member name="M:Xunit.Extensions.Assertions.Contains(System.String,System.String,System.StringComparison)">
|
||||
<summary>
|
||||
Verifies that a string contains a given sub-string, using the given comparison type.
|
||||
</summary>
|
||||
<param name="expectedSubString">The sub-string expected to be in the string</param>
|
||||
<param name="actualString">The string to be inspected</param>
|
||||
<param name="comparisonType">The type of string comparison to perform</param>
|
||||
<exception cref="T:Xunit.ContainsException">Thrown when the sub-string is not present inside the string</exception>
|
||||
<exception cref="T:Xunit.Sdk.ContainsException">Thrown when the sub-string is not present inside the string</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0})">
|
||||
<member name="M:Xunit.Extensions.Assertions.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0})">
|
||||
<summary>
|
||||
Verifies that a collection does not contain a given object.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the object to be compared</typeparam>
|
||||
<param name="expected">The object that is expected not to be in the collection</param>
|
||||
<param name="collection">The collection to be inspected</param>
|
||||
<exception cref="T:Xunit.DoesNotContainException">Thrown when the object is present inside the container</exception>
|
||||
<exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the object is present inside the container</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0})">
|
||||
<member name="M:Xunit.Extensions.Assertions.DoesNotContain``1(``0,System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IComparer{``0})">
|
||||
<summary>
|
||||
Verifies that a collection does not contain a given object, using a comparer.
|
||||
</summary>
|
||||
|
@ -62,49 +62,49 @@
|
|||
<param name="expected">The object that is expected not to be in the collection</param>
|
||||
<param name="collection">The collection to be inspected</param>
|
||||
<param name="comparer">The comparer used to equate objects in the collection with the expected object</param>
|
||||
<exception cref="T:Xunit.DoesNotContainException">Thrown when the object is present inside the container</exception>
|
||||
<exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the object is present inside the container</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.DoesNotContain(System.String,System.String)">
|
||||
<member name="M:Xunit.Extensions.Assertions.DoesNotContain(System.String,System.String)">
|
||||
<summary>
|
||||
Verifies that a string does not contain a given sub-string, using the current culture.
|
||||
</summary>
|
||||
<param name="expectedSubString">The sub-string which is expected not to be in the string</param>
|
||||
<param name="actualString">The string to be inspected</param>
|
||||
<exception cref="T:Xunit.DoesNotContainException">Thrown when the sub-string is present inside the string</exception>
|
||||
<exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the sub-string is present inside the string</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.DoesNotContain(System.String,System.String,System.StringComparison)">
|
||||
<member name="M:Xunit.Extensions.Assertions.DoesNotContain(System.String,System.String,System.StringComparison)">
|
||||
<summary>
|
||||
Verifies that a string does not contain a given sub-string, using the current culture.
|
||||
</summary>
|
||||
<param name="expectedSubString">The sub-string which is expected not to be in the string</param>
|
||||
<param name="actualString">The string to be inspected</param>
|
||||
<param name="comparisonType">The type of string comparison to perform</param>
|
||||
<exception cref="T:Xunit.DoesNotContainException">Thrown when the sub-string is present inside the given string</exception>
|
||||
<exception cref="T:Xunit.Sdk.DoesNotContainException">Thrown when the sub-string is present inside the given string</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.DoesNotThrow(Xunit.Assert.ThrowsDelegate)">
|
||||
<member name="M:Xunit.Extensions.Assertions.DoesNotThrow(Xunit.Assert.ThrowsDelegate)">
|
||||
<summary>
|
||||
Verifies that a block of code does not throw any exceptions.
|
||||
</summary>
|
||||
<param name="testCode">A delegate to the code to be tested</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Empty(System.Collections.IEnumerable)">
|
||||
<member name="M:Xunit.Extensions.Assertions.Empty(System.Collections.IEnumerable)">
|
||||
<summary>
|
||||
Verifies that a collection is empty.
|
||||
</summary>
|
||||
<param name="collection">The collection to be inspected</param>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown when the collection is null</exception>
|
||||
<exception cref="T:Xunit.EmptyException">Thrown when the collection is not empty</exception>
|
||||
<exception cref="T:Xunit.Sdk.EmptyException">Thrown when the collection is not empty</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Equal``1(``0,``0)">
|
||||
<member name="M:Xunit.Extensions.Assertions.Equal``1(``0,``0)">
|
||||
<summary>
|
||||
Verifies that two objects are equal, using a default comparer.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the objects to be compared</typeparam>
|
||||
<param name="expected">The expected value</param>
|
||||
<param name="actual">The value to be compared against</param>
|
||||
<exception cref="T:Xunit.EqualException">Thrown when the objects are not equal</exception>
|
||||
<exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Equal``1(``0,``0,System.Collections.Generic.IComparer{``0})">
|
||||
<member name="M:Xunit.Extensions.Assertions.Equal``1(``0,``0,System.Collections.Generic.IComparer{``0})">
|
||||
<summary>
|
||||
Verifies that two objects are equal, using a custom comparer.
|
||||
</summary>
|
||||
|
@ -112,33 +112,33 @@
|
|||
<param name="expected">The expected value</param>
|
||||
<param name="actual">The value to be compared against</param>
|
||||
<param name="comparer">The comparer used to compare the two objects</param>
|
||||
<exception cref="T:Xunit.EqualException">Thrown when the objects are not equal</exception>
|
||||
<exception cref="T:Xunit.Sdk.EqualException">Thrown when the objects are not equal</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Equals(System.Object)">
|
||||
<member name="M:Xunit.Extensions.Assertions.Equals(System.Object)">
|
||||
<summary>Do not call this method. Call Assert.Equal() instead.</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.False(System.Boolean)">
|
||||
<member name="M:Xunit.Extensions.Assertions.False(System.Boolean)">
|
||||
<summary>
|
||||
Verifies that the condition is false.
|
||||
</summary>
|
||||
<param name="condition">The condition to be tested</param>
|
||||
<exception cref="T:Xunit.FalseException">Thrown if the condition is not false</exception>
|
||||
<exception cref="T:Xunit.Sdk.FalseException">Thrown if the condition is not false</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.False(System.Boolean,System.String)">
|
||||
<member name="M:Xunit.Extensions.Assertions.False(System.Boolean,System.String)">
|
||||
<summary>
|
||||
Verifies that the condition is false.
|
||||
</summary>
|
||||
<param name="condition">The condition to be tested</param>
|
||||
<param name="userMessage">The message to show when the condition is not false</param>
|
||||
<exception cref="T:Xunit.FalseException">Thrown if the condition is not false</exception>
|
||||
<exception cref="T:Xunit.Sdk.FalseException">Thrown if the condition is not false</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.GetHashCode">
|
||||
<member name="M:Xunit.Extensions.Assertions.GetHashCode">
|
||||
<summary>
|
||||
Serves as a hash function for a particular type.
|
||||
</summary>
|
||||
<returns>A hash code for the current <see cref="T:System.Object"/>.</returns>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.InRange``1(``0,``0,``0)">
|
||||
<member name="M:Xunit.Extensions.Assertions.InRange``1(``0,``0,``0)">
|
||||
<summary>
|
||||
Verifies that a value is within a given range.
|
||||
</summary>
|
||||
|
@ -146,9 +146,9 @@
|
|||
<param name="actual">The actual value to be evaluated</param>
|
||||
<param name="low">The (inclusive) low value of the range</param>
|
||||
<param name="high">The (inclusive) high value of the range</param>
|
||||
<exception cref="T:Xunit.InRangeException">Thrown when the value is not in the given range</exception>
|
||||
<exception cref="T:Xunit.Sdk.InRangeException">Thrown when the value is not in the given range</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.InRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
|
||||
<member name="M:Xunit.Extensions.Assertions.InRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
|
||||
<summary>
|
||||
Verifies that a value is within a given range, using a comparer.
|
||||
</summary>
|
||||
|
@ -157,59 +157,59 @@
|
|||
<param name="low">The (inclusive) low value of the range</param>
|
||||
<param name="high">The (inclusive) high value of the range</param>
|
||||
<param name="comparer">The comparer used to evaluate the value's range</param>
|
||||
<exception cref="T:Xunit.InRangeException">Thrown when the value is not in the given range</exception>
|
||||
<exception cref="T:Xunit.Sdk.InRangeException">Thrown when the value is not in the given range</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.IsNotType``1(System.Object)">
|
||||
<member name="M:Xunit.Extensions.Assertions.IsNotType``1(System.Object)">
|
||||
<summary>
|
||||
Verifies that an object is not exactly the given type.
|
||||
</summary>
|
||||
<typeparam name="T">The type the object should not be</typeparam>
|
||||
<param name="object">The object to be evaluated</param>
|
||||
<exception cref="T:Xunit.IsTypeException">Thrown when the object is the given type</exception>
|
||||
<exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is the given type</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.IsNotType(System.Type,System.Object)">
|
||||
<member name="M:Xunit.Extensions.Assertions.IsNotType(System.Type,System.Object)">
|
||||
<summary>
|
||||
Verifies that an object is not exactly the given type.
|
||||
</summary>
|
||||
<param name="expectedType">The type the object should not be</param>
|
||||
<param name="object">The object to be evaluated</param>
|
||||
<exception cref="T:Xunit.IsTypeException">Thrown when the object is the given type</exception>
|
||||
<exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is the given type</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.IsType``1(System.Object)">
|
||||
<member name="M:Xunit.Extensions.Assertions.IsType``1(System.Object)">
|
||||
<summary>
|
||||
Verifies that an object is exactly the given type (and not a derived type).
|
||||
</summary>
|
||||
<typeparam name="T">The type the object should be</typeparam>
|
||||
<param name="object">The object to be evaluated</param>
|
||||
<returns>The object, casted to type T when successful</returns>
|
||||
<exception cref="T:Xunit.IsTypeException">Thrown when the object is not the given type</exception>
|
||||
<exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is not the given type</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.IsType(System.Type,System.Object)">
|
||||
<member name="M:Xunit.Extensions.Assertions.IsType(System.Type,System.Object)">
|
||||
<summary>
|
||||
Verifies that an object is exactly the given type (and not a derived type).
|
||||
</summary>
|
||||
<param name="expectedType">The type the object should be</param>
|
||||
<param name="object">The object to be evaluated</param>
|
||||
<exception cref="T:Xunit.IsTypeException">Thrown when the object is not the given type</exception>
|
||||
<exception cref="T:Xunit.Sdk.IsTypeException">Thrown when the object is not the given type</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.NotEmpty(System.Collections.IEnumerable)">
|
||||
<member name="M:Xunit.Extensions.Assertions.NotEmpty(System.Collections.IEnumerable)">
|
||||
<summary>
|
||||
Verifies that a collection is not empty.
|
||||
</summary>
|
||||
<param name="collection">The collection to be inspected</param>
|
||||
<exception cref="T:System.ArgumentNullException">Thrown when a null collection is passed</exception>
|
||||
<exception cref="T:Xunit.NotEmptyException">Thrown when the collection is empty</exception>
|
||||
<exception cref="T:Xunit.Sdk.NotEmptyException">Thrown when the collection is empty</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.NotEqual``1(``0,``0)">
|
||||
<member name="M:Xunit.Extensions.Assertions.NotEqual``1(``0,``0)">
|
||||
<summary>
|
||||
Verifies that two objects are not equal, using a default comparer.
|
||||
</summary>
|
||||
<typeparam name="T">The type of the objects to be compared</typeparam>
|
||||
<param name="expected">The expected object</param>
|
||||
<param name="actual">The actual object</param>
|
||||
<exception cref="T:Xunit.NotEqualException">Thrown when the objects are equal</exception>
|
||||
<exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.NotEqual``1(``0,``0,System.Collections.Generic.IComparer{``0})">
|
||||
<member name="M:Xunit.Extensions.Assertions.NotEqual``1(``0,``0,System.Collections.Generic.IComparer{``0})">
|
||||
<summary>
|
||||
Verifies that two objects are not equal, using a custom comparer.
|
||||
</summary>
|
||||
|
@ -217,9 +217,9 @@
|
|||
<param name="expected">The expected object</param>
|
||||
<param name="actual">The actual object</param>
|
||||
<param name="comparer">The comparer used to examine the objects</param>
|
||||
<exception cref="T:Xunit.NotEqualException">Thrown when the objects are equal</exception>
|
||||
<exception cref="T:Xunit.Sdk.NotEqualException">Thrown when the objects are equal</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.NotInRange``1(``0,``0,``0)">
|
||||
<member name="M:Xunit.Extensions.Assertions.NotInRange``1(``0,``0,``0)">
|
||||
<summary>
|
||||
Verifies that a value is not within a given range, using the default comparer.
|
||||
</summary>
|
||||
|
@ -227,9 +227,9 @@
|
|||
<param name="actual">The actual value to be evaluated</param>
|
||||
<param name="low">The (inclusive) low value of the range</param>
|
||||
<param name="high">The (inclusive) high value of the range</param>
|
||||
<exception cref="T:Xunit.NotInRangeException">Thrown when the value is in the given range</exception>
|
||||
<exception cref="T:Xunit.Sdk.NotInRangeException">Thrown when the value is in the given range</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.NotInRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
|
||||
<member name="M:Xunit.Extensions.Assertions.NotInRange``1(``0,``0,``0,System.Collections.Generic.IComparer{``0})">
|
||||
<summary>
|
||||
Verifies that a value is not within a given range, using a comparer.
|
||||
</summary>
|
||||
|
@ -238,48 +238,48 @@
|
|||
<param name="low">The (inclusive) low value of the range</param>
|
||||
<param name="high">The (inclusive) high value of the range</param>
|
||||
<param name="comparer">The comparer used to evaluate the value's range</param>
|
||||
<exception cref="T:Xunit.NotInRangeException">Thrown when the value is in the given range</exception>
|
||||
<exception cref="T:Xunit.Sdk.NotInRangeException">Thrown when the value is in the given range</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.NotNull(System.Object)">
|
||||
<member name="M:Xunit.Extensions.Assertions.NotNull(System.Object)">
|
||||
<summary>
|
||||
Verifies that an object reference is not null.
|
||||
</summary>
|
||||
<param name="object">The object to be validated</param>
|
||||
<exception cref="T:Xunit.NotNullException">Thrown when the object is not null</exception>
|
||||
<exception cref="T:Xunit.Sdk.NotNullException">Thrown when the object is not null</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.NotSame(System.Object,System.Object)">
|
||||
<member name="M:Xunit.Extensions.Assertions.NotSame(System.Object,System.Object)">
|
||||
<summary>
|
||||
Verifies that two objects are not the same instance.
|
||||
</summary>
|
||||
<param name="expected">The expected object instance</param>
|
||||
<param name="actual">The actual object instance</param>
|
||||
<exception cref="T:Xunit.NotSameException">Thrown when the objects are the same instance</exception>
|
||||
<exception cref="T:Xunit.Sdk.NotSameException">Thrown when the objects are the same instance</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Null(System.Object)">
|
||||
<member name="M:Xunit.Extensions.Assertions.Null(System.Object)">
|
||||
<summary>
|
||||
Verifies that an object reference is null.
|
||||
</summary>
|
||||
<param name="object">The object to be inspected</param>
|
||||
<exception cref="T:Xunit.NullException">Thrown when the object reference is not null</exception>
|
||||
<exception cref="T:Xunit.Sdk.NullException">Thrown when the object reference is not null</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Same(System.Object,System.Object)">
|
||||
<member name="M:Xunit.Extensions.Assertions.Same(System.Object,System.Object)">
|
||||
<summary>
|
||||
Verifies that two objects are the same instance.
|
||||
</summary>
|
||||
<param name="expected">The expected object instance</param>
|
||||
<param name="actual">The actual object instance</param>
|
||||
<exception cref="T:Xunit.SameException">Thrown when the objects are not the same instance</exception>
|
||||
<exception cref="T:Xunit.Sdk.SameException">Thrown when the objects are not the same instance</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Throws``1(Xunit.Assert.ThrowsDelegate)">
|
||||
<member name="M:Xunit.Extensions.Assertions.Throws``1(Xunit.Assert.ThrowsDelegate)">
|
||||
<summary>
|
||||
Verifies that the exact exception is thrown (and not a derived exception type).
|
||||
</summary>
|
||||
<typeparam name="T">The type of the exception expected to be thrown</typeparam>
|
||||
<param name="testCode">A delegate to the code to be tested</param>
|
||||
<returns>The exception that was thrown, when successful</returns>
|
||||
<exception cref="T:Xunit.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
|
||||
<exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Throws``1(System.String,Xunit.Assert.ThrowsDelegate)">
|
||||
<member name="M:Xunit.Extensions.Assertions.Throws``1(System.String,Xunit.Assert.ThrowsDelegate)">
|
||||
<summary>
|
||||
Verifies that the exact exception is thrown (and not a derived exception type).
|
||||
</summary>
|
||||
|
@ -287,117 +287,117 @@
|
|||
<param name="userMessage">The message to be shown if the test fails</param>
|
||||
<param name="testCode">A delegate to the code to be tested</param>
|
||||
<returns>The exception that was thrown, when successful</returns>
|
||||
<exception cref="T:Xunit.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
|
||||
<exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.Throws(System.Type,Xunit.Assert.ThrowsDelegate)">
|
||||
<member name="M:Xunit.Extensions.Assertions.Throws(System.Type,Xunit.Assert.ThrowsDelegate)">
|
||||
<summary>
|
||||
Verifies that the exact exception is thrown (and not a derived exception type).
|
||||
</summary>
|
||||
<param name="exceptionType">The type of the exception expected to be thrown</param>
|
||||
<param name="testCode">A delegate to the code to be tested</param>
|
||||
<returns>The exception that was thrown, when successful</returns>
|
||||
<exception cref="T:Xunit.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
|
||||
<exception cref="T:Xunit.Sdk.ThrowsException">Thrown when an exception was not thrown, or when an exception of the incorrect type is thrown</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.True(System.Boolean)">
|
||||
<member name="M:Xunit.Extensions.Assertions.True(System.Boolean)">
|
||||
<summary>
|
||||
Verifies that an expression is true.
|
||||
</summary>
|
||||
<param name="condition">The condition to be inspected</param>
|
||||
<exception cref="T:Xunit.TrueException">Thrown when the condition is false</exception>
|
||||
<exception cref="T:Xunit.Sdk.TrueException">Thrown when the condition is false</exception>
|
||||
</member>
|
||||
<member name="M:XunitExt.Assertions.True(System.Boolean,System.String)">
|
||||
<member name="M:Xunit.Extensions.Assertions.True(System.Boolean,System.String)">
|
||||
<summary>
|
||||
Verifies that an expression is true.
|
||||
</summary>
|
||||
<param name="condition">The condition to be inspected</param>
|
||||
<param name="userMessage">The message to be shown when the condition is false</param>
|
||||
<exception cref="T:Xunit.TrueException">Thrown when the condition is false</exception>
|
||||
<exception cref="T:Xunit.Sdk.TrueException">Thrown when the condition is false</exception>
|
||||
</member>
|
||||
<member name="T:XunitExt.TestClass">
|
||||
<member name="T:Xunit.Extensions.TestClass">
|
||||
<summary>
|
||||
A class which can be derived from for test classes, which bring an overridable version
|
||||
of Assert (using the <see cref="T:XunitExt.Assertions"/> class.
|
||||
of Assert (using the <see cref="T:Xunit.Extensions.Assertions"/> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:XunitExt.TestClass.Assert">
|
||||
<member name="P:Xunit.Extensions.TestClass.Assert">
|
||||
<summary>
|
||||
Gets a class which provides assertions.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:XunitExt.AssumeIdentityAttribute">
|
||||
<member name="T:Xunit.Extensions.AssumeIdentityAttribute">
|
||||
<summary>
|
||||
Apply this attribute to your test method to replace the
|
||||
<see cref="P:System.Threading.Thread.CurrentPrincipal"/> with another role.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.AssumeIdentityAttribute.#ctor(System.String)">
|
||||
<member name="M:Xunit.Extensions.AssumeIdentityAttribute.#ctor(System.String)">
|
||||
<summary>
|
||||
Replaces the identity of the current thread with <paramref name="name"/>.
|
||||
</summary>
|
||||
<param name="name">The role's name</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.AssumeIdentityAttribute.After(System.Reflection.MethodInfo)">
|
||||
<member name="M:Xunit.Extensions.AssumeIdentityAttribute.After(System.Reflection.MethodInfo)">
|
||||
<summary>
|
||||
Restores the original <see cref="P:System.Threading.Thread.CurrentPrincipal"/>.
|
||||
</summary>
|
||||
<param name="methodUnderTest">The method under test</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.AssumeIdentityAttribute.Before(System.Reflection.MethodInfo)">
|
||||
<member name="M:Xunit.Extensions.AssumeIdentityAttribute.Before(System.Reflection.MethodInfo)">
|
||||
<summary>
|
||||
Stores the current <see cref="P:System.Threading.Thread.CurrentPrincipal"/> and replaces it with
|
||||
a new role identified in constructor.
|
||||
</summary>
|
||||
<param name="methodUnderTest">The method under test</param>
|
||||
</member>
|
||||
<member name="T:XunitExt.AutoRollbackAttribute">
|
||||
<member name="T:Xunit.Extensions.AutoRollbackAttribute">
|
||||
<summary>
|
||||
Apply this attribute to your test method to automatically create a
|
||||
<see cref="T:System.Transactions.TransactionScope"/> that is rolled back when the test is
|
||||
finished.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.AutoRollbackAttribute.After(System.Reflection.MethodInfo)">
|
||||
<member name="M:Xunit.Extensions.AutoRollbackAttribute.After(System.Reflection.MethodInfo)">
|
||||
<summary>
|
||||
Rolls back the transaction.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.AutoRollbackAttribute.Before(System.Reflection.MethodInfo)">
|
||||
<member name="M:Xunit.Extensions.AutoRollbackAttribute.Before(System.Reflection.MethodInfo)">
|
||||
<summary>
|
||||
Creates the transaction.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:XunitExt.AutoRollbackAttribute.IsolationLevel">
|
||||
<member name="P:Xunit.Extensions.AutoRollbackAttribute.IsolationLevel">
|
||||
<summary>
|
||||
Gets or sets the isolation level of the transaction.
|
||||
Default value is <see cref="P:XunitExt.AutoRollbackAttribute.IsolationLevel"/>.Unspecified.
|
||||
Default value is <see cref="P:Xunit.Extensions.AutoRollbackAttribute.IsolationLevel"/>.Unspecified.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:XunitExt.AutoRollbackAttribute.ScopeOption">
|
||||
<member name="P:Xunit.Extensions.AutoRollbackAttribute.ScopeOption">
|
||||
<summary>
|
||||
Gets or sets the scope option for the transaction.
|
||||
Default value is <see cref="T:System.Transactions.TransactionScopeOption"/>.Required.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:XunitExt.AutoRollbackAttribute.TimeoutInMS">
|
||||
<member name="P:Xunit.Extensions.AutoRollbackAttribute.TimeoutInMS">
|
||||
<summary>
|
||||
Gets or sets the timeout of the transaction, in milliseconds.
|
||||
By default, the transaction will not timeout.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:XunitExt.ClassDataAttribute">
|
||||
<member name="T:Xunit.Extensions.ClassDataAttribute">
|
||||
<summary>
|
||||
Provides a data source for a data theory, with the data coming from a class
|
||||
which must implement IEnumerable<object[]>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:XunitExt.DataAttribute">
|
||||
<member name="T:Xunit.Extensions.DataAttribute">
|
||||
<summary>
|
||||
Abstract attribute which represents a data source for a data theory.
|
||||
Data source providers derive from this attribute and implement GetData
|
||||
to return the data for the theory.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.DataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
|
||||
<member name="M:Xunit.Extensions.DataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
|
||||
<summary>
|
||||
Returns the data to be used to test the theory.
|
||||
</summary>
|
||||
|
@ -415,26 +415,26 @@
|
|||
<param name="parameterTypes">The types of the parameters for the test method</param>
|
||||
<returns>The theory data</returns>
|
||||
</member>
|
||||
<member name="M:XunitExt.ClassDataAttribute.#ctor(System.Type)">
|
||||
<member name="M:Xunit.Extensions.ClassDataAttribute.#ctor(System.Type)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:XunitExt.ClassDataAttribute"/> class.
|
||||
Initializes a new instance of the <see cref="T:Xunit.Extensions.ClassDataAttribute"/> class.
|
||||
</summary>
|
||||
<param name="class">The class that provides the data.</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.ClassDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
|
||||
<member name="M:Xunit.Extensions.ClassDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="T:XunitExt.DataAdapterDataAttribute">
|
||||
<member name="T:Xunit.Extensions.DataAdapterDataAttribute">
|
||||
<summary>
|
||||
Represents an implementation of <see cref="T:XunitExt.DataAttribute"/> which uses an
|
||||
instance of <see cref="T:System.Data.IDataAdapter"/> to get the data for a <see cref="T:XunitExt.TheoryAttribute"/>
|
||||
Represents an implementation of <see cref="T:Xunit.Extensions.DataAttribute"/> which uses an
|
||||
instance of <see cref="T:System.Data.IDataAdapter"/> to get the data for a <see cref="T:Xunit.Extensions.TheoryAttribute"/>
|
||||
decorated test method.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.DataAdapterDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
|
||||
<member name="M:Xunit.Extensions.DataAdapterDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="M:XunitExt.DataAdapterDataAttribute.ConvertParameter(System.Object,System.Type)">
|
||||
<member name="M:Xunit.Extensions.DataAdapterDataAttribute.ConvertParameter(System.Object,System.Type)">
|
||||
<summary>
|
||||
Converts a parameter to its destination parameter type, if necessary.
|
||||
</summary>
|
||||
|
@ -442,23 +442,23 @@
|
|||
<param name="parameterType">The destination parameter type (null if not known)</param>
|
||||
<returns>The converted parameter value</returns>
|
||||
</member>
|
||||
<member name="P:XunitExt.DataAdapterDataAttribute.DataAdapter">
|
||||
<member name="P:Xunit.Extensions.DataAdapterDataAttribute.DataAdapter">
|
||||
<summary>
|
||||
Gets the data adapter to be used to retrieve the test data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:XunitExt.InlineDataAttribute">
|
||||
<member name="T:Xunit.Extensions.InlineDataAttribute">
|
||||
<summary>
|
||||
Provides a data source for a data theory, with the data coming from inline values.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.InlineDataAttribute.#ctor(System.Object[])">
|
||||
<member name="M:Xunit.Extensions.InlineDataAttribute.#ctor(System.Object[])">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:XunitExt.InlineDataAttribute"/> class.
|
||||
Initializes a new instance of the <see cref="T:Xunit.Extensions.InlineDataAttribute"/> class.
|
||||
</summary>
|
||||
<param name="dataValues">The data values to pass to the theory</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.InlineDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
|
||||
<member name="M:Xunit.Extensions.InlineDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
|
||||
<summary>
|
||||
Returns the data to be used to test the theory.
|
||||
</summary>
|
||||
|
@ -466,34 +466,34 @@
|
|||
<param name="parameterTypes">The types of the parameters for the test method</param>
|
||||
<returns>The theory data, in table form</returns>
|
||||
</member>
|
||||
<member name="T:XunitExt.OleDbDataAttribute">
|
||||
<member name="T:Xunit.Extensions.OleDbDataAttribute">
|
||||
<summary>
|
||||
Provides a data source for a data theory, with the data coming from an OLEDB connection.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.OleDbDataAttribute.#ctor(System.String,System.String)">
|
||||
<member name="M:Xunit.Extensions.OleDbDataAttribute.#ctor(System.String,System.String)">
|
||||
<summary>
|
||||
Creates a new instance of <see cref="T:XunitExt.OleDbDataAttribute"/>.
|
||||
Creates a new instance of <see cref="T:Xunit.Extensions.OleDbDataAttribute"/>.
|
||||
</summary>
|
||||
<param name="connectionString">The OLEDB connection string to the data</param>
|
||||
<param name="selectStatement">The SELECT statement used to return the data for the theory</param>
|
||||
</member>
|
||||
<member name="P:XunitExt.OleDbDataAttribute.DataAdapter">
|
||||
<member name="P:Xunit.Extensions.OleDbDataAttribute.DataAdapter">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="T:XunitExt.PropertyDataAttribute">
|
||||
<member name="T:Xunit.Extensions.PropertyDataAttribute">
|
||||
<summary>
|
||||
Provides a data source for a data theory, with the data coming from a public static property on the test class.
|
||||
The property must return IEnumerable<object[]> with the test data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.PropertyDataAttribute.#ctor(System.String)">
|
||||
<member name="M:Xunit.Extensions.PropertyDataAttribute.#ctor(System.String)">
|
||||
<summary>
|
||||
Creates a new instance of <see cref="T:XunitExt.PropertyDataAttribute"/>/
|
||||
Creates a new instance of <see cref="T:Xunit.Extensions.PropertyDataAttribute"/>/
|
||||
</summary>
|
||||
<param name="propertyName">The name of the public static property on the test class that will provide the test data</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.PropertyDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
|
||||
<member name="M:Xunit.Extensions.PropertyDataAttribute.GetData(System.Reflection.MethodInfo,System.Type[])">
|
||||
<summary>
|
||||
Returns the data to be used to test the theory.
|
||||
</summary>
|
||||
|
@ -501,22 +501,22 @@
|
|||
<param name="parameterTypes">The types of the parameters for the test method</param>
|
||||
<returns>The theory data, in table form</returns>
|
||||
</member>
|
||||
<member name="T:XunitExt.SqlServerDataAttribute">
|
||||
<member name="T:Xunit.Extensions.SqlServerDataAttribute">
|
||||
<summary>
|
||||
Provides a data source for a data theory, with the data coming a Microsoft SQL Server.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.SqlServerDataAttribute.#ctor(System.String,System.String,System.String)">
|
||||
<member name="M:Xunit.Extensions.SqlServerDataAttribute.#ctor(System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Creates a new instance of <see cref="T:XunitExt.SqlServerDataAttribute"/>, using a trusted connection.
|
||||
Creates a new instance of <see cref="T:Xunit.Extensions.SqlServerDataAttribute"/>, using a trusted connection.
|
||||
</summary>
|
||||
<param name="serverName">The server name of the Microsoft SQL Server</param>
|
||||
<param name="databaseName">The database name</param>
|
||||
<param name="selectStatement">The SQL SELECT statement to return the data for the data theory</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.SqlServerDataAttribute.#ctor(System.String,System.String,System.String,System.String,System.String)">
|
||||
<member name="M:Xunit.Extensions.SqlServerDataAttribute.#ctor(System.String,System.String,System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Creates a new instance of <see cref="T:XunitExt.SqlServerDataAttribute"/>, using the provided username and password.
|
||||
Creates a new instance of <see cref="T:Xunit.Extensions.SqlServerDataAttribute"/>, using the provided username and password.
|
||||
</summary>
|
||||
<param name="serverName">The server name of the Microsoft SQL Server</param>
|
||||
<param name="databaseName">The database name</param>
|
||||
|
@ -524,88 +524,88 @@
|
|||
<param name="password">The password for the server</param>
|
||||
<param name="selectStatement">The SQL SELECT statement to return the data for the data theory</param>
|
||||
</member>
|
||||
<member name="T:XunitExt.ExcelDataAttribute">
|
||||
<member name="T:Xunit.Extensions.ExcelDataAttribute">
|
||||
<summary>
|
||||
Provides a data source for a data theory, with the data coming a Microsoft Excel (.xls) spreadsheet.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.ExcelDataAttribute.#ctor(System.String,System.String)">
|
||||
<member name="M:Xunit.Extensions.ExcelDataAttribute.#ctor(System.String,System.String)">
|
||||
<summary>
|
||||
Creates a new instance of <see cref="T:XunitExt.ExcelDataAttribute"/>.
|
||||
Creates a new instance of <see cref="T:Xunit.Extensions.ExcelDataAttribute"/>.
|
||||
</summary>
|
||||
<param name="filename">The filename of the XLS spreadsheet file; if the filename provided
|
||||
is relative, then it is relative to the location of xunit.extensions.dll.</param>
|
||||
<param name="selectStatement">The SELECT statement that returns the data for the theory</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.ExcelDataAttribute.ConvertParameter(System.Object,System.Type)">
|
||||
<member name="M:Xunit.Extensions.ExcelDataAttribute.ConvertParameter(System.Object,System.Type)">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="T:XunitExt.Clock">
|
||||
<member name="T:Xunit.Extensions.Clock">
|
||||
<summary>
|
||||
A wrapper around the static operations on <see cref="T:System.DateTime"/> which allows time
|
||||
to be frozen using the <see cref="T:XunitExt.FreezeClockAttribute"/>. The clock begins in the
|
||||
thawed state; that is, calls to <see cref="P:XunitExt.Clock.Now"/>, <see cref="P:XunitExt.Clock.Today"/>, and
|
||||
<see cref="P:XunitExt.Clock.UtcNow"/> return current (non-frozen) values.
|
||||
to be frozen using the <see cref="T:Xunit.Extensions.FreezeClockAttribute"/>. The clock begins in the
|
||||
thawed state; that is, calls to <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and
|
||||
<see cref="P:Xunit.Extensions.Clock.UtcNow"/> return current (non-frozen) values.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.Clock.Freeze">
|
||||
<member name="M:Xunit.Extensions.Clock.Freeze">
|
||||
<summary>
|
||||
Freezes the clock with the current time.
|
||||
Until <see cref="M:XunitExt.Clock.Thaw"/> is called, all calls to <see cref="P:XunitExt.Clock.Now"/>, <see cref="P:XunitExt.Clock.Today"/>, and
|
||||
<see cref="P:XunitExt.Clock.UtcNow"/> will return the exact same values.
|
||||
Until <see cref="M:Xunit.Extensions.Clock.Thaw"/> is called, all calls to <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and
|
||||
<see cref="P:Xunit.Extensions.Clock.UtcNow"/> will return the exact same values.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.Clock.FreezeLocal(System.DateTime)">
|
||||
<member name="M:Xunit.Extensions.Clock.FreezeLocal(System.DateTime)">
|
||||
<summary>
|
||||
Freezes the clock with the given date and time, considered to be local time.
|
||||
Until <see cref="M:XunitExt.Clock.Thaw"/> is called, all calls to <see cref="P:XunitExt.Clock.Now"/>, <see cref="P:XunitExt.Clock.Today"/>, and
|
||||
<see cref="P:XunitExt.Clock.UtcNow"/> will return the exact same values.
|
||||
Until <see cref="M:Xunit.Extensions.Clock.Thaw"/> is called, all calls to <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and
|
||||
<see cref="P:Xunit.Extensions.Clock.UtcNow"/> will return the exact same values.
|
||||
</summary>
|
||||
<param name="localDateTime">The local date and time to freeze to</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.Clock.FreezeUtc(System.DateTime)">
|
||||
<member name="M:Xunit.Extensions.Clock.FreezeUtc(System.DateTime)">
|
||||
<summary>
|
||||
Freezes the clock with the given date and time, considered to be Coordinated Universal Time (UTC).
|
||||
Until <see cref="M:XunitExt.Clock.Thaw"/> is called, all calls to <see cref="P:XunitExt.Clock.Now"/>, <see cref="P:XunitExt.Clock.Today"/>, and
|
||||
<see cref="P:XunitExt.Clock.UtcNow"/> will return the exact same values.
|
||||
Until <see cref="M:Xunit.Extensions.Clock.Thaw"/> is called, all calls to <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and
|
||||
<see cref="P:Xunit.Extensions.Clock.UtcNow"/> will return the exact same values.
|
||||
</summary>
|
||||
<param name="utcDateTime">The UTC date and time to freeze to</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.Clock.Thaw">
|
||||
<member name="M:Xunit.Extensions.Clock.Thaw">
|
||||
<summary>
|
||||
Thaws the clock so that <see cref="P:XunitExt.Clock.Now"/>, <see cref="P:XunitExt.Clock.Today"/>, and <see cref="P:XunitExt.Clock.UtcNow"/>
|
||||
Thaws the clock so that <see cref="P:Xunit.Extensions.Clock.Now"/>, <see cref="P:Xunit.Extensions.Clock.Today"/>, and <see cref="P:Xunit.Extensions.Clock.UtcNow"/>
|
||||
return normal values.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:XunitExt.Clock.Now">
|
||||
<member name="P:Xunit.Extensions.Clock.Now">
|
||||
<summary>
|
||||
Gets a <see cref="T:System.DateTime"/> object that is set to the current date and time on this computer,
|
||||
expressed as the local time.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:XunitExt.Clock.Today">
|
||||
<member name="P:Xunit.Extensions.Clock.Today">
|
||||
<summary>
|
||||
Gets the current date.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:XunitExt.Clock.UtcNow">
|
||||
<member name="P:Xunit.Extensions.Clock.UtcNow">
|
||||
<summary>
|
||||
Gets a <see cref="T:System.DateTime"/> object that is set to the current date and time on this computer,
|
||||
expressed as the Coordinated Universal Time (UTC).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:XunitExt.FreezeClockAttribute">
|
||||
<member name="T:Xunit.Extensions.FreezeClockAttribute">
|
||||
<summary>
|
||||
Apply this attribute to your test method to freeze the time represented by the
|
||||
<see cref="T:XunitExt.Clock"/> class.
|
||||
<see cref="T:Xunit.Extensions.Clock"/> class.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.FreezeClockAttribute.#ctor">
|
||||
<member name="M:Xunit.Extensions.FreezeClockAttribute.#ctor">
|
||||
<summary>
|
||||
Freeze the clock with the current date and time.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.FreezeClockAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
|
||||
<member name="M:Xunit.Extensions.FreezeClockAttribute.#ctor(System.Int32,System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Freeze the clock with the given date, considered to be local time.
|
||||
</summary>
|
||||
|
@ -613,7 +613,7 @@
|
|||
<param name="month">The frozen month</param>
|
||||
<param name="day">The frozen day</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.FreezeClockAttribute.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
|
||||
<member name="M:Xunit.Extensions.FreezeClockAttribute.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Freeze the clock with the given date and time, considered to be in local time.
|
||||
</summary>
|
||||
|
@ -624,7 +624,7 @@
|
|||
<param name="minute">The frozen minute</param>
|
||||
<param name="second">The frozen second</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.FreezeClockAttribute.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind)">
|
||||
<member name="M:Xunit.Extensions.FreezeClockAttribute.#ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.DateTimeKind)">
|
||||
<summary>
|
||||
Freeze the clock with the given date and time, with the given kind of time.
|
||||
</summary>
|
||||
|
@ -636,19 +636,19 @@
|
|||
<param name="second">The frozen second</param>
|
||||
<param name="kind">The frozen time kind</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.FreezeClockAttribute.After(System.Reflection.MethodInfo)">
|
||||
<member name="M:Xunit.Extensions.FreezeClockAttribute.After(System.Reflection.MethodInfo)">
|
||||
<summary>
|
||||
Thaws the clock.
|
||||
</summary>
|
||||
<param name="methodUnderTest">The method under test</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.FreezeClockAttribute.Before(System.Reflection.MethodInfo)">
|
||||
<member name="M:Xunit.Extensions.FreezeClockAttribute.Before(System.Reflection.MethodInfo)">
|
||||
<summary>
|
||||
Freezes the clock.
|
||||
</summary>
|
||||
<param name="methodUnderTest">The method under test</param>
|
||||
</member>
|
||||
<member name="T:XunitExt.TheoryAttribute">
|
||||
<member name="T:Xunit.Extensions.TheoryAttribute">
|
||||
<summary>
|
||||
Marks a test method as being a data theory. Data theories are tests which are fed
|
||||
various bits of data from a data source, mapping to parameters on the test method.
|
||||
|
@ -656,57 +656,46 @@
|
|||
multiple times (once with each data row).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.TheoryAttribute.EnumerateTestCommands(System.Reflection.MethodInfo)">
|
||||
<member name="M:Xunit.Extensions.TheoryAttribute.EnumerateTestCommands(System.Reflection.MethodInfo)">
|
||||
<summary>
|
||||
Creates instances of <see cref="T:XunitExt.TheoryCommand"/> which represent individual intended
|
||||
Creates instances of <see cref="T:Xunit.Extensions.TheoryCommand"/> which represent individual intended
|
||||
invocations of the test method, one per data row in the data source.
|
||||
</summary>
|
||||
<param name="method">The method under test</param>
|
||||
<returns>An enumerator through the desired test method invocations</returns>
|
||||
</member>
|
||||
<member name="T:XunitExt.TheoryCommand">
|
||||
<member name="T:Xunit.Extensions.TheoryCommand">
|
||||
<summary>
|
||||
Represents a single invocation of a data theory test method.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.TheoryCommand.#ctor(System.Reflection.MethodInfo,System.Object[])">
|
||||
<member name="M:Xunit.Extensions.TheoryCommand.#ctor(System.Reflection.MethodInfo,System.Object[])">
|
||||
<summary>
|
||||
Creates a new instance of <see cref="T:XunitExt.TheoryCommand"/>.
|
||||
Creates a new instance of <see cref="T:Xunit.Extensions.TheoryCommand"/>.
|
||||
</summary>
|
||||
<param name="testMethod">The method under test</param>
|
||||
<param name="parameters">The parameters to be passed to the test method</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.TheoryCommand.Execute(System.Object)">
|
||||
<member name="M:Xunit.Extensions.TheoryCommand.Execute(System.Object)">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="P:XunitExt.TheoryCommand.Name">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="P:XunitExt.TheoryCommand.ShouldCreateInstance">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="P:XunitExt.TheoryCommand.Parameters">
|
||||
<member name="P:Xunit.Extensions.TheoryCommand.Parameters">
|
||||
<summary>
|
||||
Gets the parameter values that are passed to the test method.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:XunitExt.TheoryCommand.TestMethod">
|
||||
<summary>
|
||||
Gets the method under test.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:XunitExt.TraceAttribute">
|
||||
<member name="T:Xunit.Extensions.TraceAttribute">
|
||||
<summary>
|
||||
Apply to a test method to trace the method begin and end.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:XunitExt.TraceAttribute.Before(System.Reflection.MethodInfo)">
|
||||
<member name="M:Xunit.Extensions.TraceAttribute.Before(System.Reflection.MethodInfo)">
|
||||
<summary>
|
||||
This method is called before the test method is executed.
|
||||
</summary>
|
||||
<param name="methodUnderTest">The method under test</param>
|
||||
</member>
|
||||
<member name="M:XunitExt.TraceAttribute.After(System.Reflection.MethodInfo)">
|
||||
<member name="M:Xunit.Extensions.TraceAttribute.After(System.Reflection.MethodInfo)">
|
||||
<summary>
|
||||
This method is called after the test method is executed.
|
||||
</summary>
|
Двоичный файл не отображается.
Двоичные данные
3rdParty/xunit-1.0.3/xunit.installer.exe → 3rdParty/xunit-1.1/xunit.installer.exe
поставляемый
Двоичные данные
3rdParty/xunit-1.0.3/xunit.installer.exe → 3rdParty/xunit-1.1/xunit.installer.exe
поставляемый
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичные данные
3rdParty/xunit-1.0.3/xunitext.runner.jetbrains.dll → 3rdParty/xunit-1.1/xunit.runner.resharper.dll
поставляемый
Двоичные данные
3rdParty/xunit-1.0.3/xunitext.runner.jetbrains.dll → 3rdParty/xunit-1.1/xunit.runner.resharper.dll
поставляемый
Двоичный файл не отображается.
Двоичный файл не отображается.
Двоичный файл не отображается.
|
@ -0,0 +1,407 @@
|
|||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>xunit.runner.utility</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Xunit.ExecutorWrapper">
|
||||
<summary>
|
||||
Wraps calls to the Executor. Used by runners to perform version-resilient test
|
||||
enumeration and execution.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Xunit.IExecutorWrapper">
|
||||
<summary>
|
||||
Wraps calls to the Executor. Used by runners to perform version-resilient test
|
||||
enumeration and execution.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Xunit.IExecutorWrapper.EnumerateTests">
|
||||
<summary>
|
||||
Enumerates the tests in an assembly.
|
||||
</summary>
|
||||
<returns>The fully-formed assembly node of the XML</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.IExecutorWrapper.GetAssemblyTestCount">
|
||||
<summary>
|
||||
Gets a count of the tests in the assembly.
|
||||
</summary>
|
||||
<returns>Returns the number of tests, if known; returns -1 if not known. May not represent
|
||||
an exact count, but should be a best effort guess by the framework.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.IExecutorWrapper.RunAssembly(System.Predicate{System.Xml.XmlNode})">
|
||||
<summary>
|
||||
Runs all the tests in an assembly.
|
||||
</summary>
|
||||
<param name="callback">The callback which is called as each test/class/assembly is
|
||||
finished, providing XML nodes that are part of the xUnit.net XML output format.
|
||||
Test runs can be cancelled by returning false to the callback. If null, there are
|
||||
no status callbacks (and cancellation isn't possible).</param>
|
||||
<returns>Returns the fully-formed assembly node for the assembly that was just run.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.IExecutorWrapper.RunClass(System.String,System.Predicate{System.Xml.XmlNode})">
|
||||
<summary>
|
||||
Runs all the tests in the given class.
|
||||
</summary>
|
||||
<param name="type">The type.</param>
|
||||
<param name="callback">The callback which is called as each test/class is
|
||||
finished, providing XML nodes that are part of the xUnit.net XML output format.
|
||||
Test runs can be cancelled by returning false to the callback. If null, there are
|
||||
no status callbacks (and cancellation isn't possible).</param>
|
||||
<returns>Returns the fully-formed class node for the class that was just run.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.IExecutorWrapper.RunTest(System.String,System.String,System.Predicate{System.Xml.XmlNode})">
|
||||
<summary>
|
||||
Runs a single test in a class.
|
||||
</summary>
|
||||
<param name="type">The type to run.</param>
|
||||
<param name="method">The method to run.</param>
|
||||
<param name="callback">The callback which is called as each test/class is
|
||||
finished, providing XML nodes that are part of the xUnit.net XML output format.
|
||||
Test runs can be cancelled by returning false to the callback. If null, there are
|
||||
no status callbacks (and cancellation isn't possible).</param>
|
||||
<returns>Returns the fully-formed class node for the class of the test that was just run.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.IExecutorWrapper.RunTests(System.String,System.Collections.Generic.List{System.String},System.Predicate{System.Xml.XmlNode})">
|
||||
<summary>
|
||||
Runs several tests in a single class.
|
||||
</summary>
|
||||
<param name="type">The type.</param>
|
||||
<param name="methods">The methods to run.</param>
|
||||
<param name="callback">The callback which is called as each test/class is
|
||||
finished, providing XML nodes that are part of the xUnit.net XML output format.
|
||||
Test runs can be cancelled by returning false to the callback. If null, there are
|
||||
no status callbacks (and cancellation isn't possible).</param>
|
||||
<returns>Returns the fully-formed class node for the class of the tests that were just run.</returns>
|
||||
</member>
|
||||
<member name="P:Xunit.IExecutorWrapper.AssemblyFilename">
|
||||
<summary>
|
||||
Gets the full pathname to the assembly under test.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Xunit.IExecutorWrapper.XunitVersion">
|
||||
<summary>
|
||||
Gets the version of xunit.dll used by the test assembly.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.#ctor(System.String,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Xunit.ExecutorWrapper"/> class.
|
||||
</summary>
|
||||
<param name="assemblyFilename">The assembly filename.</param>
|
||||
<param name="configFilename">The config filename. If null, the default config filename will be used.</param>
|
||||
<param name="shadowCopy">Set to true to enable shadow copying; false, otherwise.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.Dispose">
|
||||
<summary>
|
||||
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.EnumerateTests">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.GetAssemblyTestCount">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.RunAssembly(System.Predicate{System.Xml.XmlNode})">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.RunClass(System.String,System.Predicate{System.Xml.XmlNode})">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.RunTest(System.String,System.String,System.Predicate{System.Xml.XmlNode})">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="M:Xunit.ExecutorWrapper.RunTests(System.String,System.Collections.Generic.List{System.String},System.Predicate{System.Xml.XmlNode})">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="P:Xunit.ExecutorWrapper.AssemblyFilename">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="P:Xunit.ExecutorWrapper.XunitVersion">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="T:Xunit.IRunnerLogger">
|
||||
<summary>
|
||||
Represents a logger used by <see cref="T:Xunit.TestRunner"/> and <see cref="T:Xunit.XmlLoggerAdapter"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Xunit.IRunnerLogger.AssemblyFinished(System.String,System.Int32,System.Int32,System.Int32,System.Double)">
|
||||
<summary>
|
||||
Called when the assembly has finished running.
|
||||
</summary>
|
||||
<param name="assemblyFilename">The assembly filename.</param>
|
||||
<param name="total">The total number of tests run.</param>
|
||||
<param name="failed">The number of failed tests.</param>
|
||||
<param name="skipped">The number of skipped tests.</param>
|
||||
<param name="time">The time taken to run, in seconds.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.IRunnerLogger.AssemblyStart(System.String,System.String)">
|
||||
<summary>
|
||||
Called when the assembly has started running.
|
||||
</summary>
|
||||
<param name="assemblyFilename">The assembly filename.</param>
|
||||
<param name="xUnitVersion">The version of xunit.dll.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.IRunnerLogger.ClassFailed(System.String,System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Called when a class failure is encountered (i.e., when a fixture from
|
||||
IUseFixture throws an exception during construction or <see cref="M:System.IDisposable.Dispose"/>.
|
||||
</summary>
|
||||
<param name="className">The full type name of the class.</param>
|
||||
<param name="exceptionType">The full type name of the exception.</param>
|
||||
<param name="message">The exception message.</param>
|
||||
<param name="stackTrace">The exception stack trace.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Xunit.IRunnerLogger.ExceptionThrown(System.String,System.Exception)">
|
||||
<summary>
|
||||
Called when an exception is thrown (i.e., a catastrophic failure of the testing system).
|
||||
</summary>
|
||||
<param name="assemblyFilename">The assembly filename.</param>
|
||||
<param name="exception">The exception that was thrown.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.IRunnerLogger.TestFailed(System.String,System.String,System.String,System.Double,System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Called when a test fails.
|
||||
</summary>
|
||||
<param name="name">The description name of the test.</param>
|
||||
<param name="type">The full type name of the test class.</param>
|
||||
<param name="method">The name of the method.</param>
|
||||
<param name="duration">The time spent running the test, in seconds.</param>
|
||||
<param name="exceptionType">The full type name of the exception.</param>
|
||||
<param name="message">The exception message.</param>
|
||||
<param name="stackTrace">The exception stack trace.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.IRunnerLogger.TestFinished(System.String,System.String,System.String,System.Double,System.String)">
|
||||
<summary>
|
||||
Called when a test has finished running, regardless of what the result was.
|
||||
</summary>
|
||||
<param name="name">The description name of the test.</param>
|
||||
<param name="type">The full type name of the test class.</param>
|
||||
<param name="method">The name of the method.</param>
|
||||
<param name="duration">The time spent running the test, in seconds.</param>
|
||||
<param name="output">The output of the test during its run.</param>
|
||||
<returns>Return true to continue running tests; return false to stop the test run.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.IRunnerLogger.TestPassed(System.String,System.String,System.String,System.Double)">
|
||||
<summary>
|
||||
Called when a test has passed.
|
||||
</summary>
|
||||
<param name="name">The description name of the test.</param>
|
||||
<param name="type">The full type name of the test class.</param>
|
||||
<param name="method">The name of the method.</param>
|
||||
<param name="duration">The time spent running the test, in seconds.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.IRunnerLogger.TestSkipped(System.String,System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Called when a test was finished.
|
||||
</summary>
|
||||
<param name="name">The description name of the test.</param>
|
||||
<param name="type">The full type name of the test class.</param>
|
||||
<param name="method">The name of the method.</param>
|
||||
<param name="reason">The skip reason.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.IRunnerLogger.TestStart(System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Called when a test has started running.
|
||||
</summary>
|
||||
<param name="name">The description name of the test.</param>
|
||||
<param name="type">The full type name of the test class.</param>
|
||||
<param name="method">The name of the method.</param>
|
||||
<returns>Return true to continue running tests; return false to stop the test run.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.IRunnerLogger.TransformStart(System.String,System.String)">
|
||||
<summary>
|
||||
Called when a transform is being run against the assembly XML.
|
||||
</summary>
|
||||
<param name="outputType">The transform's output type, if known; null if not.</param>
|
||||
<param name="filename">The filename the transform is writing to, if known;
|
||||
null if the results are not being written to file.</param>
|
||||
</member>
|
||||
<member name="T:Xunit.TestRunnerResult">
|
||||
<summary>
|
||||
The result of a test run via <see cref="T:Xunit.TestRunner"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Xunit.TestRunnerResult.Passed">
|
||||
<summary>
|
||||
All tests passed, with no class-level failures
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Xunit.TestRunnerResult.Failed">
|
||||
<summary>
|
||||
At least one test failed, or there was a class-level failure
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Xunit.TestRunnerResult.NoTests">
|
||||
<summary>
|
||||
There were no tests to run
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Xunit.IResultXmlTransform">
|
||||
<summary>
|
||||
Represents a transformation of the resulting assembly XML into some output format.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Xunit.IResultXmlTransform.Transform(System.String)">
|
||||
<summary>
|
||||
Transforms the given assembly XML into the destination format.
|
||||
</summary>
|
||||
<param name="xml">The assembly XML.</param>
|
||||
</member>
|
||||
<member name="P:Xunit.IResultXmlTransform.Filename">
|
||||
<summary>
|
||||
Gets the output filename, if known; returns null if the output isn't done to file.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Xunit.IResultXmlTransform.OutputType">
|
||||
<summary>
|
||||
Gets the type of the output.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Xunit.TestRunner">
|
||||
<summary>
|
||||
Runs tests in an assembly, and transforms the XML results into calls to
|
||||
the provided <see cref="T:Xunit.IRunnerLogger"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Xunit.TestRunner.#ctor(Xunit.IExecutorWrapper,Xunit.IRunnerLogger)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Xunit.TestRunner"/> class.
|
||||
</summary>
|
||||
<param name="executorWrapper">The executor wrapper.</param>
|
||||
<param name="logger">The logger.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.TestRunner.RunAssembly">
|
||||
<summary>
|
||||
Executes the tests in the assembly.
|
||||
</summary>
|
||||
<returns>Returns true if there were no failures; return false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.TestRunner.RunAssembly(System.Collections.Generic.IEnumerable{Xunit.IResultXmlTransform})">
|
||||
<summary>
|
||||
Executes the tetss in the assembly, and then executes the transforms with the
|
||||
resulting assembly XML.
|
||||
</summary>
|
||||
<param name="transforms">The transforms to execute.</param>
|
||||
<returns>Returns true if there were no failures; return false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.TestRunner.RunClass(System.String)">
|
||||
<summary>
|
||||
Runs the class.
|
||||
</summary>
|
||||
<param name="type">The type.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Xunit.TestRunner.RunTest(System.String,System.String)">
|
||||
<summary>
|
||||
Runs a single test in a test class.
|
||||
</summary>
|
||||
<param name="type">The full name of the class.</param>
|
||||
<param name="method">The name of the method.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.TestRunner.RunTests(System.String,System.Collections.Generic.List{System.String})">
|
||||
<summary>
|
||||
Runs the list of tests in a test class.
|
||||
</summary>
|
||||
<param name="type">The full name of the class.</param>
|
||||
<param name="methods">The names of the methods to run.</param>
|
||||
</member>
|
||||
<member name="T:Xunit.NullTransformer">
|
||||
<summary>
|
||||
An implementation of <see cref="T:Xunit.IResultXmlTransform"/> which writes the
|
||||
XML to a file without any transformation applied.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Xunit.NullTransformer.#ctor(System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Xunit.NullTransformer"/> class.
|
||||
</summary>
|
||||
<param name="filename">The output filename.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.NullTransformer.Transform(System.String)">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="P:Xunit.NullTransformer.Filename">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="P:Xunit.NullTransformer.OutputType">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="T:Xunit.XslStreamTransformer">
|
||||
<summary>
|
||||
An implementation of <see cref="T:Xunit.IResultXmlTransform"/> which writes the
|
||||
XML to a file after applying the XSL stylesheet in the given stream.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Xunit.XslStreamTransformer.#ctor(System.IO.Stream,System.String,System.String)">
|
||||
<summary>
|
||||
Initializes a new instance of the <see cref="T:Xunit.XslStreamTransformer"/> class.
|
||||
</summary>
|
||||
<param name="xslStream">The stream with the XSL stylesheet.</param>
|
||||
<param name="filename">The output filename.</param>
|
||||
<param name="outputType">The output type.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.XslStreamTransformer.Transform(System.String)">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="P:Xunit.XslStreamTransformer.Filename">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="P:Xunit.XslStreamTransformer.OutputType">
|
||||
<inheritdoc/>
|
||||
</member>
|
||||
<member name="T:Xunit.XmlLoggerAdapter">
|
||||
<summary>
|
||||
Parses the XML nodes from the version resilient runner facility and converts
|
||||
them into calls against the provided <see cref="T:Xunit.IRunnerLogger"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Xunit.XmlLoggerAdapter.LogNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
|
||||
<summary>
|
||||
Logs a result XML node. Maybe be any kind of XML node.
|
||||
</summary>
|
||||
<param name="node">The node to be logged.</param>
|
||||
<param name="logger">The logger.</param>
|
||||
<returns>Returns true if the user wishes to continue running tests; returns false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.XmlLoggerAdapter.LogAssemblyNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
|
||||
<summary>
|
||||
Logs the assembly node by calling <see cref="M:Xunit.IRunnerLogger.AssemblyFinished(System.String,System.Int32,System.Int32,System.Int32,System.Double)"/>.
|
||||
</summary>
|
||||
<param name="assemblyNode">The assembly node.</param>
|
||||
<param name="logger">The logger.</param>
|
||||
</member>
|
||||
<member name="M:Xunit.XmlLoggerAdapter.LogClassNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
|
||||
<summary>
|
||||
Logs the class node by calling <see cref="M:Xunit.IRunnerLogger.ClassFailed(System.String,System.String,System.String,System.String)"/> (if the class failed).
|
||||
The exception type was added in xUnit.net 1.1, so when the test assembly is linked against
|
||||
xUnit.net versions prior to 1.1, the exception type will be null.
|
||||
</summary>
|
||||
<param name="classNode">The class node.</param>
|
||||
<param name="logger">The logger.</param>
|
||||
<returns>Returns true if the user wishes to continue running tests; returns false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.XmlLoggerAdapter.LogStartNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
|
||||
<summary>
|
||||
Logs the start node by calling <see cref="M:Xunit.IRunnerLogger.TestStart(System.String,System.String,System.String)"/>. The start node was added
|
||||
in xUnit.net 1.1, so it will only be present when the test assembly is linked against xunit.dll
|
||||
version 1.1 or later.
|
||||
</summary>
|
||||
<param name="startNode">The start node.</param>
|
||||
<param name="logger">The logger.</param>
|
||||
<returns>Returns true if the user wishes to continue running tests; returns false otherwise.</returns>
|
||||
</member>
|
||||
<member name="M:Xunit.XmlLoggerAdapter.LogTestNode(System.Xml.XmlNode,Xunit.IRunnerLogger)">
|
||||
<summary>
|
||||
Logs the test node by calling <see cref="M:Xunit.IRunnerLogger.TestFinished(System.String,System.String,System.String,System.Double,System.String)"/>. It will also call
|
||||
<see cref="M:Xunit.IRunnerLogger.TestPassed(System.String,System.String,System.String,System.Double)"/>, <see cref="M:Xunit.IRunnerLogger.TestFailed(System.String,System.String,System.String,System.Double,System.String,System.String,System.String)"/>, or
|
||||
<see cref="M:Xunit.IRunnerLogger.TestSkipped(System.String,System.String,System.String,System.String)"/> as appropriate.
|
||||
</summary>
|
||||
<param name="testNode">The test node.</param>
|
||||
<param name="logger">The logger.</param>
|
||||
<returns>Returns true if the user wishes to continue running tests; returns false otherwise.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -44,9 +44,9 @@
|
|||
</Reference>
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="xunit, Version=1.0.3.1299, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
|
||||
<Reference Include="xunit, Version=1.1.0.1323, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\3rdParty\xunit-1.0.3\xunit.dll</HintPath>
|
||||
<HintPath>..\3rdParty\xunit-1.1\xunit.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
|
Загрузка…
Ссылка в новой задаче