Arc.Unit.Tests.Domain.Identity.IntegerIdentityEntityTests.Integer_based_entities_with_same_identity_and_type_should_be_equal C# (CSharp) Méthode

Integer_based_entities_with_same_identity_and_type_should_be_equal() private méthode

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

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