public void MapModelToBO() { var mapper = new BOLAirlineMapper(); ApiAirlineRequestModel model = new ApiAirlineRequestModel(); model.SetProperties("A"); BOAirline response = mapper.MapModelToBO(1, model); response.Name.Should().Be("A"); }