CollectionAssert.AreEqual Method
Include Protected Members
Include Inherited Members
Verifies that specified collections are equal. Two collections are equal if they have the same elements in the same order and quantity. Elements are equal if their values are equal, not if they refer to the same object.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
Overload List
Name | Description | |
---|---|---|
AreEqual(ICollection, ICollection) | Verifies that two specified collections are equal. The assertion fails if the collections are not equal. | |
AreEqual(ICollection, ICollection, IComparer) | Verifies that two specified collections are equal, using the specified method to compare the values of elements. The assertion fails if the collections are not equal. | |
AreEqual(ICollection, ICollection, String) | Verifies that two specified collections are equal. The assertion fails if the collections are not equal. Displays a message if the assertion fails. | |
AreEqual(ICollection, ICollection, IComparer, String) | Verifies that two specified collections are equal, using the specified method to compare the values of elements. The assertion fails if the collections are not equal. Displays a message if the assertion fails. | |
AreEqual(ICollection, ICollection, String, array<Object[]) | Verifies that two specified collections are equal. The assertion fails if the collections are not equal. Displays a message if the assertion fails, and applies the specified formatting to it. | |
AreEqual(ICollection, ICollection, IComparer, String, array<Object[]) | Verifies that two specified collections are equal, using the specified method to compare the values of elements. The assertion fails if the collections are not equal. Displays a message if the assertion fails, and applies the specified formatting to it. |
Top