共用方式為


CollectionAssert.AreNotEqual 方法 (ICollection, ICollection, String)

確認兩個指定的集合不相等。 如果這些集合都相等,判斷提示就會失敗。 如果判斷提示失敗,便顯示一則訊息。

命名空間:  Microsoft.VisualStudio.TestTools.UnitTesting
組件:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (在 Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 中)

語法

'宣告
Public Shared Sub AreNotEqual ( _
    notExpected As ICollection, _
    actual As ICollection, _
    message As String _
)
public static void AreNotEqual(
    ICollection notExpected,
    ICollection actual,
    string message
)
public:
static void AreNotEqual(
    ICollection^ notExpected, 
    ICollection^ actual, 
    String^ message
)
static member AreNotEqual : 
        notExpected:ICollection * 
        actual:ICollection * 
        message:string -> unit 
public static function AreNotEqual(
    notExpected : ICollection, 
    actual : ICollection, 
    message : String
)

參數

  • message
    型別:System.String
    要在判斷提示失敗時顯示的訊息。這項訊息會在單元測試結果中出現。

例外狀況

例外狀況 條件
AssertFailedException

expected 等於 actual。

備註

如果兩個集合具有相同的項目且順序和數量也相同,它們就是相等。 如果項目的值相等,它們就相等,但是如果它們參考相同的物件,則不相等。 項目的值預設會使用 Equals 進行比較。

.NET Framework 安全性

請參閱

參考

CollectionAssert 類別

AreNotEqual 多載

Microsoft.VisualStudio.TestTools.UnitTesting 命名空間

其他資源

使用 Assert 類別