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