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); }
public void GetJsonAsyncTest() { Yelp yelp = new Yelp(); Dictionary <String, String> dict = null; var json = yelp.GetJsonAsync(dict); }