예제 #1
0
        public static void AreNotEqual(ICollectionByValue first, ICollectionByValue second)
        {
            Assert.AreNotEqual(first, second);
            Assert.AreNotEqual(second, first);

            // hash code may be same for different object
        }
예제 #2
0
 public static void AreEqual(ICollectionByValue first, ICollectionByValue second)
 {
     Assert.AreEqual(first, second);
     Assert.AreEqual(second, first);
     Assert.AreEqual(first.GetHashCode(), second.GetHashCode());
 }