Arc.Unit.Tests.Domain.Identity.IntegerIdentityEntityTests.Integer_based_entities_with_different_identity_should_not_be_equal C# (CSharp) 메소드

Integer_based_entities_with_different_identity_should_not_be_equal() 개인적인 메소드

        public void Integer_based_entities_with_different_identity_should_not_be_equal()
        {
            var first = new Person(1);
            var second = new Person(2);

            Assert.That(first, Is.Not.EqualTo(second));
        }