CollectionAssert Class (Microsoft.VisualStudio.TestTools.UnitTesting)

Switch View :
ScriptFree
API Reference for Testing Tools for Visual Studio ALM
CollectionAssert Class

Verifies true/false propositions associated with collections in unit tests.

Inheritance Hierarchy

System.Object
  Microsoft.VisualStudio.TestTools.UnitTesting.CollectionAssert

Namespace:  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Syntax

Visual Basic
Public NotInheritable Class CollectionAssert
C#
public static class CollectionAssert
Visual C++
public ref class CollectionAssert abstract sealed
F#
[<AbstractClass>]
[<Sealed>]
type CollectionAssert =  class end
JScript
public final class CollectionAssert
Methods

  Name Description
Public method Static member AllItemsAreInstancesOfType(ICollection, Type) Verifies that all elements in the specified collection are instances of the specified type. The assertion fails if for any element the type is not found in its inheritance hierarchy.
Public method Static member AllItemsAreInstancesOfType(ICollection, Type, String) Verifies that all elements in the specified collection are instances of the specified type. The assertion fails if there exists one element in the collection for which the specified type is not found in its inheritance hierarchy. Displays a message if the assertion fails.
Public method Static member AllItemsAreInstancesOfType(ICollection, Type, String, Object()) Verifies that all elements in the specified collection are instances of the specified type. The assertion fails if there exists one element in the collection for which the specified type is not found in its inheritance hierarchy. Displays a message if the assertion fails, and applies the specified formatting to it.
Public method Static member AllItemsAreNotNull(ICollection) Verifies that all items in the specified collection are not Nothing. The assertion fails if any element is Nothing.
Public method Static member AllItemsAreNotNull(ICollection, String) Verifies that all items in the specified collection are not Nothing. The assertion fails if any element is Nothing. Displays a message if the assertion fails.
Public method Static member AllItemsAreNotNull(ICollection, String, Object()) Verifies that all items in the specified collection are not Nothing. The assertion fails if any element is Nothing. Displays a message if the assertion fails, and applies the specified formatting to it.
Public method Static member AllItemsAreUnique(ICollection) Verifies that all items in the specified collection are unique. The assertion fails if any two elements in the collection are equal.
Public method Static member AllItemsAreUnique(ICollection, String) Verifies that all items in the specified collection are unique. The assertion fails if any two elements in the collection are equal. Displays a message if the assertion fails.
Public method Static member AllItemsAreUnique(ICollection, String, Object()) Verifies that all items in the specified collection are unique. The assertion fails if any two elements in the collection are equal. Displays a message if the assertion fails, and applies the specified formatting to it.
Public method Static member AreEqual(ICollection, ICollection) Verifies that two specified collections are equal. The assertion fails if the collections are not equal.
Public method Static member 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.
Public method Static member 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.
Public method Static member 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.
Public method Static member AreEqual(ICollection, ICollection, String, 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.
Public method Static member AreEqual(ICollection, ICollection, IComparer, String, 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.
Public method Static member AreEquivalent(ICollection, ICollection) Verifies that two specified collections are equivalent. The assertion fails if the collections are not equivalent.
Public method Static member AreEquivalent(ICollection, ICollection, String) Verifies that two specified collections are equivalent. The assertion fails if the collections are not equivalent. Displays a message if the assertion fails.
Public method Static member AreEquivalent(ICollection, ICollection, String, Object()) Verifies that two specified collections are equivalent. The assertion fails if the collections are not equivalent. Displays a message if the assertion fails, and applies the specified formatting to it.
Public method Static member AreNotEqual(ICollection, ICollection) Verifies that two specified collections are not equal. The assertion fails if the collections are equal.
Public method Static member AreNotEqual(ICollection, ICollection, IComparer) Verifies that two specified collections are not equal, using the specified method to compare the values of elements. The assertion fails if the collections are equal.
Public method Static member AreNotEqual(ICollection, ICollection, String) Verifies that two specified collections are not equal. The assertion fails if the collections are equal. Displays a message if the assertion fails.
Public method Static member AreNotEqual(ICollection, ICollection, IComparer, String) Verifies that two specified collections are not equal, using the specified method to compare the values of elements. The assertion fails if the collections are equal. Displays a message if the assertion fails.
Public method Static member AreNotEqual(ICollection, ICollection, String, Object()) Verifies that two specified collections are not equal. The assertion fails if the collections are equal. Displays a message if the assertion fails, and applies the specified formatting to it.
Public method Static member AreNotEqual(ICollection, ICollection, IComparer, String, Object()) Verifies that two specified collections are not equal, using the specified method to compare the values of elements. The assertion fails if the collections are equal. Displays a message if the assertion fails, and applies the specified formatting to it.
Public method Static member AreNotEquivalent(ICollection, ICollection) Verifies that two specified collections are not equivalent. The assertion fails if the collections are equivalent.
Public method Static member AreNotEquivalent(ICollection, ICollection, String) Verifies that two specified collections are not equivalent. The assertion fails if the collections are equivalent. Displays a message if the assertion fails.
Public method Static member AreNotEquivalent(ICollection, ICollection, String, Object()) Verifies that two specified collections are not equivalent. The assertion fails if the collections are equivalent. Displays a message if the assertion fails, and applies the specified formatting to it.
Public method Static member Contains(ICollection, Object) Verifies that the specified collection contains the specified element. The assertion fails if the element is not found in the collection.
Public method Static member Contains(ICollection, Object, String) Verifies that the specified collection contains the specified element. The assertion fails if the element is not found in the collection. Displays a message if the assertion fails.
Public method Static member Contains(ICollection, Object, String, Object()) Verifies that the specified collection contains the specified element. The assertion fails if the element is not found in the collection. Displays a message if the assertion fails, and applies the specified formatting to it.
Public method Static member DoesNotContain(ICollection, Object) Verifies that the specified collection does not contain the specified element. The assertion fails if the element is found in the collection.
Public method Static member DoesNotContain(ICollection, Object, String) Verifies that the specified collection does not contain the specified element. The assertion fails if the element is found in the collection. Displays a message if the assertion fails.
Public method Static member DoesNotContain(ICollection, Object, String, Object()) Verifies that the specified collection does not contain the specified element. The assertion fails if the element is found in the collection. Displays a message if the assertion fails, and applies the specified formatting to it.
Public method Static member IsNotSubsetOf(ICollection, ICollection) Verifies that the first collection is not a subset of the second collection.
Public method Static member IsNotSubsetOf(ICollection, ICollection, String) Verifies that the first collection is not a subset of the second collection. Displays a message if the assertion fails.
Public method Static member IsNotSubsetOf(ICollection, ICollection, String, Object()) Verifies that the first collection is not a subset of the second collection. Displays a message if the assertion fails, and applies the specified formatting to it.
Public method Static member IsSubsetOf(ICollection, ICollection) Verifies that the first collection is a subset of the second collection.
Public method Static member IsSubsetOf(ICollection, ICollection, String) Verifies that the first collection is a subset of the second collection. Displays a message if the assertion fails.
Public method Static member IsSubsetOf(ICollection, ICollection, String, Object()) Verifies that the first collection is a subset of the second collection. Displays a message if the assertion fails, and applies the specified formatting to it.
Top
Remarks

This class contains a set of static methods that evaluate a Boolean condition. If this condition evaluates to true, the assertion passes.

An assertion verifies an assumption of truth for compared conditions.

If the condition being verified is not true, the assertion fails.

Important note Important

The CollectionAssert class throws an AssertFailedException to signal a failure. This exception should not be captured. This exception is handled by the unit test engine to indicate an assert failure.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also

Reference

Other Resources