CollectionAssert.DoesNotContain 方法 (ICollection, Object, String)
確認指定的集合不包含指定的項目。 如果此項目位於集合中,判斷提示就會失敗。 如果判斷提示失敗,便顯示一則訊息。
命名空間: Microsoft.VisualStudio.TestTools.UnitTesting
組件: Microsoft.VisualStudio.QualityTools.UnitTestFramework (在 Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 中)
語法
'宣告
Public Shared Sub DoesNotContain ( _
collection As ICollection, _
element As Object, _
message As String _
)
public static void DoesNotContain(
ICollection collection,
Object element,
string message
)
public:
static void DoesNotContain(
ICollection^ collection,
Object^ element,
String^ message
)
static member DoesNotContain :
collection:ICollection *
element:Object *
message:string -> unit
public static function DoesNotContain(
collection : ICollection,
element : Object,
message : String
)
參數
- collection
型別:System.Collections.ICollection
用來搜尋項目的集合。
- element
型別:System.Object
不預期會在集合中的項目。
- message
型別:System.String
要在判斷提示失敗時顯示的訊息。這項訊息會在單元測試結果中出現。
例外狀況
例外狀況 | 條件 |
---|---|
AssertFailedException | collection 是在 element 中。 |
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。
請參閱
參考
Microsoft.VisualStudio.TestTools.UnitTesting 命名空間