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

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

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

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