protected override void Because_of()
 {
     var source = new StringDictionary() { { "Foo", "Foo" } };
     _destination = Mapper.Map<Destination>(source);
 }
Esempio n. 2
0
 protected override void Because_of()
 {
     _destination = Mapper.Map <Destination>(new Source {
         Color = ConsoleColor.Black
     });
 }