Example #1
0
        public void MapModelToBO()
        {
            var mapper = new BOLPostTypesMapper();
            ApiPostTypesRequestModel model = new ApiPostTypesRequestModel();

            model.SetProperties("A");
            BOPostTypes response = mapper.MapModelToBO(1, model);

            response.Type.Should().Be("A");
        }
Example #2
0
        public void MapBOToModel()
        {
            var         mapper = new BOLPostTypesMapper();
            BOPostTypes bo     = new BOPostTypes();

            bo.SetProperties(1, "A");
            ApiPostTypesResponseModel response = mapper.MapBOToModel(bo);

            response.Id.Should().Be(1);
            response.Type.Should().Be("A");
        }
Example #3
0
        public void MapBOToModelList()
        {
            var         mapper = new BOLPostTypesMapper();
            BOPostTypes bo     = new BOPostTypes();

            bo.SetProperties(1, "A");
            List <ApiPostTypesResponseModel> response = mapper.MapBOToModel(new List <BOPostTypes>()
            {
                { bo }
            });

            response.Count.Should().Be(1);
        }