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

Transient_integer_based_entity_should_not_be_equal_with_other_transient_entity() private method

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

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