Arc.Unit.Tests.Domain.Identity.IntegerIdentityEntityTests.Integer_based_entity_with_identity_should_not_be_equal_to_transient_entity C# (CSharp) Метод

Integer_based_entity_with_identity_should_not_be_equal_to_transient_entity() приватный Метод

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

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