nunit.framework.xml
来自「day la mot chuong trinh rat la thu vi, d」· XML 代码 · 共 1,124 行 · 第 1/5 页
XML
1,124 行
Verifies that two uints are equal. If they are not, then an
<see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32,System.String)">
<summary>
Verifies that two uints are equal. If they are not, then an
<see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.UInt32,System.UInt32)">
<summary>
Verifies that two uints are equal. If they are not, then an
<see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String,System.Object[])">
<summary>
Verifies that two decimals are equal. If they are not, then an
<see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal,System.String)">
<summary>
Verifies that two decimal are equal. If they are not, then an
<see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Decimal,System.Decimal)">
<summary>
Verifies that two decimals are equal. If they are not, then an
<see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String,System.Object[])">
<summary>
Verifies that two doubles are equal considering a delta. If the
expected value is infinity then the delta value is ignored. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
<param name="message">The message that will be displayed on failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double,System.String)">
<summary>
Verifies that two doubles are equal considering a delta. If the
expected value is infinity then the delta value is ignored. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
<param name="message">The message that will be displayed on failure</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Double,System.Double,System.Double)">
<summary>
Verifies that two doubles are equal considering a delta. If the
expected value is infinity then the delta value is ignored. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String,System.Object[])">
<summary>
Verifies that two floats are equal considering a delta. If the
expected value is infinity then the delta value is ignored. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
<param name="message">The message displayed upon failure</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single,System.String)">
<summary>
Verifies that two floats are equal considering a delta. If the
expected value is infinity then the delta value is ignored. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
<param name="message">The message displayed upon failure</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Single,System.Single,System.Single)">
<summary>
Verifies that two floats are equal considering a delta. If the
expected value is infinity then the delta value is ignored. If
they are not equals then an <see cref="T:NUnit.Framework.AssertionException"/> is
thrown.
</summary>
<param name="expected">The expected value</param>
<param name="actual">The actual value</param>
<param name="delta">The maximum acceptable difference between the
the expected and the actual</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String,System.Object[])">
<summary>
Verifies that two objects are equal. Two objects are considered
equal if both are null, or if both have the same value. All
non-numeric types are compared by using the <c>Equals</c> method.
Arrays are compared by comparing each element using the same rules.
If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The value that is expected</param>
<param name="actual">The actual value</param>
<param name="message">The message to display if objects are not equal</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object,System.String)">
<summary>
Verifies that two objects are equal. Two objects are considered
equal if both are null, or if both have the same value. All
non-numeric types are compared by using the <c>Equals</c> method.
If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The value that is expected</param>
<param name="actual">The actual value</param>
<param name="message">The message to display if objects are not equal</param>
</member>
<member name="M:NUnit.Framework.Assert.AreEqual(System.Object,System.Object)">
<summary>
Verifies that two objects are equal. Two objects are considered
equal if both are null, or if both have the same value. All
non-numeric types are compared by using the <c>Equals</c> method.
If they are not equal an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The value that is expected</param>
<param name="actual">The actual value</param>
</member>
<member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String,System.Object[])">
<summary>
Asserts that two objects are not equal. If they are equal
an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the two objects are the same object.</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object,System.String)">
<summary>
Asserts that two objects are not equal. If they are equal
an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the objects are the same</param>
</member>
<member name="M:NUnit.Framework.Assert.AreNotEqual(System.Object,System.Object)">
<summary>
Asserts that two objects are not equal. If they are equal
an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
</member>
<member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String,System.Object[])">
<summary>
Asserts that two ints are not equal. If they are equal
an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the two objects are the same object.</param>
<param name="args">Arguments to be used in formatting the message</param>
</member>
<member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32,System.String)">
<summary>
Asserts that two ints are not equal. If they are equal
an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
<param name="message">The message to be displayed when the objects are the same</param>
</member>
<member name="M:NUnit.Framework.Assert.AreNotEqual(System.Int32,System.Int32)">
<summary>
Asserts that two ints are not equal. If they are equal
an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
</member>
<member name="M:NUnit.Framework.Assert.AreNotEqual(System.UInt32,System.UInt32,System.String,System.Object[])">
<summary>
Asserts that two uints are not equal. If they are equal
an <see cref="T:NUnit.Framework.AssertionException"/> is thrown.
</summary>
<param name="expected">The expected object</param>
<param name="actual">The actual object</param>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?