Arc.Unit.Tests.Domain.Identity.IntegerIdentityEntityTests.Transient_integer_based_entity_should_be_equal_other_transient_entity_when_they_reference_to_same_entity C# (CSharp) Method

Transient_integer_based_entity_should_be_equal_other_transient_entity_when_they_reference_to_same_entity() private method

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

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