This topic has not yet been rated - Rate this topic

Assert.AreEqual<T> Method (T, T, String, Object[])

Verifies that two specified generic type data are equal by using the equality operator. The assertion fails if they are not equal. Displays a message if the assertion fails, and applies the specified formatting to it.

Namespace:  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
public static void AreEqual<T>(
	T expected,
	T actual,
	string message,
	params Object[] parameters
)

Type Parameters

T

Parameters

expected
Type: T
actual
Type: T
message
Type: System.String
parameters
Type: System.Object[]
ExceptionCondition
AssertFailedException

expected is not equal to actual.

Different numeric types are treated as equal if the logical values are equal. For example, 42L is equal to 42.

T is the type of values to compare.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.