Ejemplo n.º 1
0
 public void GetSuggestionsBySearchText()
 {
     var api = new GeoCoderApi();
     var result = api.GetSuggestions("parnassia");
     Assert.True(result.Count > 0);
 }
Ejemplo n.º 2
0
 public void GetLocationsById(string id)
 {
     var api = new GeoCoderApi();
     var result = api.GetLocations(id);
     Assert.True(result.Count > 0);
 }