public virtual async void TestUpdate()
        {
            var builder = new WebHostBuilder()
                          .UseEnvironment("Production")
                          .UseStartup <TestStartup>();
            TestServer testServer = new TestServer(builder);

            var client = new ApiClient(testServer.CreateClient());

            client.SetBearerToken(JWTTestHelper.GenerateBearerToken());
            var mapper = new ApiPostTypeServerModelMapper();
            ApplicationDbContext           context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            IPostTypeService               service = testServer.Host.Services.GetService(typeof(IPostTypeService)) as IPostTypeService;
            ApiPostTypeServerResponseModel model   = await service.Get(1);

            ApiPostTypeClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties("B");

            UpdateResponse <ApiPostTypeClientResponseModel> updateResponse = await client.PostTypeUpdateAsync(model.Id, request);

            context.Entry(context.Set <PostType>().ToList()[0]).Reload();
            updateResponse.Record.Should().NotBeNull();
            updateResponse.Success.Should().BeTrue();
            updateResponse.Record.Id.Should().Be(1);
            context.Set <PostType>().ToList()[0].RwType.Should().Be("B");

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.RwType.Should().Be("B");
        }
        public void MapServerResponseToRequest()
        {
            var mapper = new ApiPostTypeServerModelMapper();
            var model  = new ApiPostTypeServerResponseModel();

            model.SetProperties(1, "A");
            ApiPostTypeServerRequestModel response = mapper.MapServerResponseToRequest(model);

            response.Should().NotBeNull();
            response.RwType.Should().Be("A");
        }
        public void CreatePatch()
        {
            var mapper = new ApiPostTypeServerModelMapper();
            var model  = new ApiPostTypeServerRequestModel();

            model.SetProperties("A");

            JsonPatchDocument <ApiPostTypeServerRequestModel> patch = mapper.CreatePatch(model);
            var response = new ApiPostTypeServerRequestModel();

            patch.ApplyTo(response);
            response.RwType.Should().Be("A");
        }