public void test_yelp_business_Json() { YelpOAuthUtil result = new YelpOAuthUtil(_consumerKey, _consumerSecret, _token, _tokenSecret); var yelpJson = result.BusinessIdJson("yelp-san-francisco"); Assert.IsTrue(!string.IsNullOrEmpty(yelpJson)); }
public void test_yelp_search_api_json() { YelpOAuthUtil result = new YelpOAuthUtil(_consumerKey, _consumerSecret, _token, _tokenSecret); var yelpJson = result.SearchApiJson("term=food&location=Tampa&state=FL"); Assert.IsTrue(!string.IsNullOrEmpty(yelpJson)); }
public void test_yelp_business() { YelpOAuthUtil result = new YelpOAuthUtil(_consumerKey, _consumerSecret, _token, _tokenSecret); YelpBusinessObject yelpResult = result.BusinessId("yelp-san-francisco"); Assert.IsNotNull(yelpResult); }
public void test_yelp_search_api() { YelpOAuthUtil result = new YelpOAuthUtil(_consumerKey, _consumerSecret, _token, _tokenSecret); YelpSearchObject yelpResult = result.SearchApi("term=food&location=Tampa&state=FL"); Assert.IsNotNull(yelpResult); }