Sdílet prostřednictvím


CollectionAssert.AllItemsAreInstancesOfType – metoda (ICollection, Type)

Ověří, zda jsou všechny prvky v kolekci zadané výskyty zadaného typu. Pokud u prvků typu nebyl nalezen v hierarchii dědičnosti výrazu nezdaří.

Obor názvů:  Microsoft.VisualStudio.TestTools.UnitTesting
Sestavení:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (v Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

Syntaxe

'Deklarace
Public Shared Sub AllItemsAreInstancesOfType ( _
    collection As ICollection, _
    expectedType As Type _
)
public static void AllItemsAreInstancesOfType(
    ICollection collection,
    Type expectedType
)
public:
static void AllItemsAreInstancesOfType(
    ICollection^ collection, 
    Type^ expectedType
)
static member AllItemsAreInstancesOfType : 
        collection:ICollection * 
        expectedType:Type -> unit 
public static function AllItemsAreInstancesOfType(
    collection : ICollection, 
    expectedType : Type
)

Parametry

  • expectedType
    Typ: System.Type
    Očekávaný typ v hierarchii dědičnosti všech prvků collection.

Výjimky

Výjimka Podmínka
AssertFailedException

Prvek collection je nullodkaz Null (Nothing v jazyce Visual Basic) nebo expectedType nebyl nalezen v hierarchii dědičnosti všech prvků v collection.

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

CollectionAssert Třída

AllItemsAreInstancesOfType – přetížení

Microsoft.VisualStudio.TestTools.UnitTesting – obor názvů

Další zdroje

Using the Assert Classes