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 ApiPipelineStepDestinationServerModelMapper();
            ApplicationDbContext            context             = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            IPipelineStepDestinationService service             = testServer.Host.Services.GetService(typeof(IPipelineStepDestinationService)) as IPipelineStepDestinationService;
            ApiPipelineStepDestinationServerResponseModel model = await service.Get(1);

            ApiPipelineStepDestinationClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties(1, 1);

            UpdateResponse <ApiPipelineStepDestinationClientResponseModel> updateResponse = await client.PipelineStepDestinationUpdateAsync(model.Id, request);

            context.Entry(context.Set <PipelineStepDestination>().ToList()[0]).Reload();
            updateResponse.Record.Should().NotBeNull();
            updateResponse.Success.Should().BeTrue();
            updateResponse.Record.Id.Should().Be(1);
            context.Set <PipelineStepDestination>().ToList()[0].DestinationId.Should().Be(1);
            context.Set <PipelineStepDestination>().ToList()[0].PipelineStepId.Should().Be(1);

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.DestinationId.Should().Be(1);
            updateResponse.Record.PipelineStepId.Should().Be(1);
        }
        public void MapServerResponseToRequest()
        {
            var mapper = new ApiPipelineStepDestinationServerModelMapper();
            var model  = new ApiPipelineStepDestinationServerResponseModel();

            model.SetProperties(1, 1, 1);
            ApiPipelineStepDestinationServerRequestModel response = mapper.MapServerResponseToRequest(model);

            response.Should().NotBeNull();
            response.DestinationId.Should().Be(1);
            response.PipelineStepId.Should().Be(1);
        }
        public void CreatePatch()
        {
            var mapper = new ApiPipelineStepDestinationServerModelMapper();
            var model  = new ApiPipelineStepDestinationServerRequestModel();

            model.SetProperties(1, 1);

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

            patch.ApplyTo(response);
            response.DestinationId.Should().Be(1);
            response.PipelineStepId.Should().Be(1);
        }