AutoMapper.UnitTests.Constructors.When_constructor_is_partial_match.Because_of C# (CSharp) Method

Because_of() protected method

protected Because_of ( ) : void
return void
        protected override void Because_of()
        {
            var source = new GeolocationDTO
            {
                Latitude = 34d,
                Longitude = -93d,
                HorizontalAccuracy = 100
            };
            _destination = Mapper.Map<GeoCoordinate>(source);
        }
When_constructor_is_partial_match