Пример #1
0
        public void GetJsonAsyncTest2()
        {
            Dictionary <string, string> dict = new Dictionary <string, string>();

            dict.Add("term", "delis");
            Yelp yelp = new Yelp();
            var  json = yelp.GetJsonAsync(dict);

            Assert.IsNotNull(json);
        }
Пример #2
0
 public void GetJsonAsyncTest()
 {
     Yelp yelp = new Yelp();
     Dictionary <String, String> dict = null;
     var json = yelp.GetJsonAsync(dict);
 }