public void MapModelToBO() { var mapper = new BOLOtherTransportMapper(); ApiOtherTransportRequestModel model = new ApiOtherTransportRequestModel(); model.SetProperties(1, 1); BOOtherTransport response = mapper.MapModelToBO(1, model); response.HandlerId.Should().Be(1); response.PipelineStepId.Should().Be(1); }