public void TestEquals() { TestEntity expected = new TestEntity(); expected.PropertyValue = "12"; TestEntity actual = new TestEntity(); actual.PropertyValue = "11"; Assert.IsFalse(expected.Compare(actual)); actual.PropertyValue = "12"; Assert.IsTrue(expected.Compare(actual)); }