TDD – (3) – 陣列與集合的測試

      在〈TDD – (3) – 陣列與集合的測試〉中留言功能已關閉

CollectionAssert.AreEqual 可以對陣列進行檢查

CollectionAssert.AreEquivalent 可以檢查是否”相等”,值的順序則不檢查

但如果是類別,則需要實作 IComparer 來比較

但每次都要處理 ICompare ,則可以使用 ExpectedObjects

https://github.com/derekgreer/expectedObjects/

print