AutoMapper.UnitTests.Bug.Self_referencing_existing_destination.Because_of C# (CSharp) Method

Because_of() protected method

protected Because_of ( ) : void
return void
        protected override void Because_of()
        {
            var baseType = new BaseType();
            var baseTypeDto = new BaseTypeDto();

            Mapper.Map(baseType, baseTypeDto);
        }
    }
Self_referencing_existing_destination