Sdílet prostřednictvím


Assert.IsNotInstanceOfType – metoda (Object, Type, String)

Zadaný objekt není zadaného typu instance ověří. Uplatnění selže, pokud typ nachází v hierarchii dědičnosti objektu. Vyhodnocení výrazu nezdaří, zobrazí se zpráva.

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

Syntaxe

'Deklarace
Public Shared Sub IsNotInstanceOfType ( _
    value As Object, _
    wrongType As Type, _
    message As String _
)
public static void IsNotInstanceOfType(
    Object value,
    Type wrongType,
    string message
)
public:
static void IsNotInstanceOfType(
    Object^ value, 
    Type^ wrongType, 
    String^ message
)
static member IsNotInstanceOfType : 
        value:Object * 
        wrongType:Type * 
        message:string -> unit 
public static function IsNotInstanceOfType(
    value : Object, 
    wrongType : Type, 
    message : String
)

Parametry

  • wrongType
    Typ: System.Type
    Typ, který by nebyl nalezen v hierarchii dědičnosti value.
  • message
    Typ: System.String
    Zpráva zobrazí, pokud výrazu se nezdaří.Tuto zprávu lze zobrazit ve výsledcích zkoušek jednotky.

Výjimky

Výjimka Podmínka
AssertFailedException

valuenení nullodkaz Null (Nothing v jazyce Visual Basic) a wrongType se nachází v hierarchii dědičnosti value.

Zabezpečení rozhraní .NET Framework

Viz také

Odkaz

Assert Třída

IsNotInstanceOfType – přetížení

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

Další zdroje

Using the Assert Classes