CollectionAssert.IsSubsetOf Method (ICollection, ICollection)

Verifies that the first collection is a subset of the second collection.

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

Syntax

'Declaration
Public Shared Sub IsSubsetOf ( _
    subset As ICollection, _
    superset As ICollection _
)
'Usage
Dim subset As ICollection 
Dim superset As ICollection 

CollectionAssert.IsSubsetOf(subset, superset)
public static void IsSubsetOf(
    ICollection subset,
    ICollection superset
)
public:
static void IsSubsetOf(
    ICollection^ subset, 
    ICollection^ superset
)
public static function IsSubsetOf(
    subset : ICollection, 
    superset : ICollection
)

Parameters

Exceptions

Exception Condition
AssertFailedException

An element in subset is not found in superset or an element in subset is not found in superset in sufficient quantity.

Remarks

One collection is a subset of another collection if every element in the first collection also appears in the second collection. An element that appears in the first collection more than once must appear in the second collection as many times, or more, as it does in the first collection. The second collection may have elements that are not in the first collection, but that is not required.

.NET Framework Security

See Also

Reference

CollectionAssert Class

CollectionAssert Members

IsSubsetOf Overload

Microsoft.VisualStudio.TestTools.UnitTesting Namespace

Other Resources

Using the Assert Classes