Exemplo n.º 1
0
        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));
        }
Exemplo n.º 2
0
        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));
        }
Exemplo n.º 3
0
        public void test_yelp_business()
        {
            YelpOAuthUtil      result     = new YelpOAuthUtil(_consumerKey, _consumerSecret, _token, _tokenSecret);
            YelpBusinessObject yelpResult = result.BusinessId("yelp-san-francisco");

            Assert.IsNotNull(yelpResult);
        }
Exemplo n.º 4
0
        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);
        }
Exemplo n.º 5
0
 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));
 }
Exemplo n.º 6
0
 public void test_yelp_business()
 {
     YelpOAuthUtil result = new YelpOAuthUtil(_consumerKey, _consumerSecret, _token, _tokenSecret);
     YelpBusinessObject yelpResult = result.BusinessId("yelp-san-francisco");
     Assert.IsNotNull(yelpResult);
 }
Exemplo n.º 7
0
 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));
 }
Exemplo n.º 8
0
 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);
 }