Exemplo n.º 1
0
 private static void Map_the_property_values(SourceContext context)
 {
     var result = new MappingTester<OutputClass>().Verify(context.Destination, context.Expected);
     result.IsValid.ShouldBeTrue(result.ToString());
 }
Exemplo n.º 2
0
 private static void Not_change_the_destination_object(SimpleMapper obj, LowerCaseContext context)
 {
     var result = new MappingTester<OutputClassLowerCase>().Verify(context.Destination, context.Expected);
     result.IsValid.ShouldBeTrue(result.ToString());
 }
Exemplo n.º 3
0
 private static void Map_the_property_values(DynamicDestinationContext context)
 {
     var result = new MappingTester<object>().Verify(context.Destination, context.Expected);
     result.IsValid.ShouldBeTrue(result.ToString());
 }