Esempio n. 1
0
        public void AreNotEqual()
        {
            ParentChain chain1 = ParentChain.GetGrandFatherSample();
            ParentChain chain2 = ParentChain.GetGrandFatherSample();

            chain2.Name = "bfff";

            Assert.Throws <AssertionException>(() => ObjectComparer.AssertNotEqual(chain1, chain2));
        }