CollectionAssert.AllItemsAreInstancesOfType Method (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.
Namespace: Microsoft.VisualStudio.TestTools.UnitTesting
Assembly: Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)
Syntax
'Declaration
Public Shared Sub AllItemsAreInstancesOfType ( _
collection As ICollection, _
expectedType As Type, _
message As String _
)
public static void AllItemsAreInstancesOfType(
ICollection collection,
Type expectedType,
string message
)
public:
static void AllItemsAreInstancesOfType(
ICollection^ collection,
Type^ expectedType,
String^ message
)
static member AllItemsAreInstancesOfType :
collection:ICollection *
expectedType:Type *
message:string -> unit
public static function AllItemsAreInstancesOfType(
collection : ICollection,
expectedType : Type,
message : String
)
Parameters
collection
Type: ICollectionThe collection to verify.
expectedType
Type: TypeThe type expected to be found in the inheritance hierarchy of every element in collection.
message
Type: StringA message to display if the assertion fails. This message can be seen in the unit test results.
Exceptions
Exception | Condition |
---|---|
AssertFailedException | An element in collection is nulla null reference (Nothing in Visual Basic) or expectedType is not found in the inheritance hierarchy of all elements in collection. |
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
AllItemsAreInstancesOfType Overload
Microsoft.VisualStudio.TestTools.UnitTesting Namespace