Esempio n. 1
0
 public async Task TestGetCategories1()
 {
     Caller api = new Caller(info);
     Assert.IsNotNull(api);
     Assert.IsFalse(api.hasSessionId);
     var cats = await api.GetCategories(false, true, true);
     Assert.IsTrue(api.hasSessionId);
     Assert.AreEqual(cats.Status, 0);
 }