Ejemplo n.º 1
0
 public void LocationFakerTest()
 {
     DisplayAndExecute(new Expression <Func <string> >[] {
         () => LocationFaker.City(),
         () => LocationFaker.Country(),
         () => LocationFaker.PostCode(),
         () => LocationFaker.Street(),
         () => LocationFaker.StreetName(),
         () => LocationFaker.ZipCode(),
     });
     DisplayAndExecute(new Expression <Func <int> >[] {
         () => LocationFaker.StreetNumber(),
     });
 }