Assert.IsNotInstanceOfType 方法 (Object, Type, String, array<Object[])
验证指定的对象是否不为指定类型的实例。 如果在该对象的继承层次结构中找到了指定的类型,则断言失败。 断言失败时将显示一则消息,并向该消息应用指定的格式。
命名空间: Microsoft.VisualStudio.TestTools.UnitTesting
程序集: Microsoft.VisualStudio.QualityTools.UnitTestFramework(在 Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 中)
语法
声明
Public Shared Sub IsNotInstanceOfType ( _
value As Object, _
wrongType As Type, _
message As String, _
ParamArray parameters As Object() _
)
public static void IsNotInstanceOfType(
Object value,
Type wrongType,
string message,
params Object[] parameters
)
public:
static void IsNotInstanceOfType(
Object^ value,
Type^ wrongType,
String^ message,
... array<Object^>^ parameters
)
static member IsNotInstanceOfType :
value:Object *
wrongType:Type *
message:string *
parameters:Object[] -> unit
public static function IsNotInstanceOfType(
value : Object,
wrongType : Type,
message : String,
... parameters : Object[]
)
参数
- value
类型:System.Object
要验证的对象不属于 wrongType。
- wrongType
类型:System.Type
不应当在 value 的继承层次结构中找到的类型。
- message
类型:System.String
断言失败时显示的消息。在单元测试结果中可以看到此消息。
- parameters
类型:array<System.Object[]
设置 message 格式时使用的参数的数组。
异常
异常 | 条件 |
---|---|
AssertFailedException | value 不为 nullnull 引用(在 Visual Basic 中为 Nothing),而且在 value 的继承层次结构中找到了 wrongType。 |
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。
请参见
参考
Microsoft.VisualStudio.TestTools.UnitTesting 命名空间