AutoMapper.UnitTests.BuildExecutionPlan.Should_build_the_execution_plan C# (CSharp) Method

Should_build_the_execution_plan() private method

private Should_build_the_execution_plan ( ) : void
return void
        public void Should_build_the_execution_plan()
        {
            _destination.Id.ShouldEqual(_source.Id);
            _destination.FooId.ShouldEqual(_source.FooId.ToString());
            _destination.ShortDescription.ShouldEqual(_source.ShortDescription);
            _destination.FullDescription.ShouldEqual(_source.FullDescription);
            _destination.Date.ShouldEqual(_source.Date);
            _destination.IntValue.ShouldEqual(_source.IntValue.Value);
        }
    }