Example #1
0
 public RequestToEntityMappingProfileTests()
 {
     if (_mapper == null)
     {
         _mapper = TestsConfiguration.CreateMapper(new RequestToEntityMappingProfile());
     }
 }
 public EntityToResponseMappingProfileTests()
 {
     if (_mapper == null)
     {
         _mapper = TestsConfiguration.CreateMapper(new EntityToResponseMappingProfile());
     }
 }
Example #3
0
 public void ShouldSupportMappingFromSourceToDestination(Type source, Type destination)
 {
     TestsConfiguration.ShouldSupportMapping(source, destination, _mapper);
 }