コード例 #1
0
        public void MapClientResponseToRequest()
        {
            var mapper = new ApiCountryModelMapper();
            var model  = new ApiCountryClientResponseModel();

            model.SetProperties(1, "A");
            ApiCountryClientRequestModel response = mapper.MapClientResponseToRequest(model);

            response.Should().NotBeNull();
            response.Name.Should().Be("A");
        }