CollectionAssert.AreEquivalent 方法 (ICollection, ICollection, String, array<Object[])
確認兩個指定的集合對等。 如果這些集合都不對等,判斷提示就會失敗。 如果判斷提示失敗,便顯示一則訊息,並套用指定的格式。
命名空間: Microsoft.VisualStudio.TestTools.UnitTesting
組件: Microsoft.VisualStudio.QualityTools.UnitTestFramework (在 Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 中)
語法
'宣告
Public Shared Sub AreEquivalent ( _
expected As ICollection, _
actual As ICollection, _
message As String, _
ParamArray parameters As Object() _
)
public static void AreEquivalent(
ICollection expected,
ICollection actual,
string message,
params Object[] parameters
)
public:
static void AreEquivalent(
ICollection^ expected,
ICollection^ actual,
String^ message,
... array<Object^>^ parameters
)
static member AreEquivalent :
expected:ICollection *
actual:ICollection *
message:string *
parameters:Object[] -> unit
public static function AreEquivalent(
expected : ICollection,
actual : ICollection,
message : String,
... parameters : Object[]
)
參數
expected
類型:ICollection要比較的第一個集合。 這包含了單元測試所預期的項目。
actual
類型:ICollection要比較的第二個集合。 這是單元測試所產生的集合。
message
類型:String要在判斷提示失敗時顯示的訊息。 這項訊息會在單元測試結果中出現。
parameters
類型:array<Object[]在格式化 message 時所要使用的參數陣列。
例外狀況
例外狀況 | 條件 |
---|---|
AssertFailedException | 只能在其中一個集合中找到,而不能在另一個集合中找到的項目。 |
備註
如果兩個集合具有相同的項目且數量相同,但是順序不同,它們就是對等。 如果項目的值相等,它們就相等,但是如果它們參考相同的物件,則不相等。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。
請參閱
參考
Microsoft.VisualStudio.TestTools.UnitTesting 命名空間