コード例 #1
0
 public void GetDelegatesErrorResultTest(SmartHoldemDelegateList delegates)
 {
     Assert.IsNotNull(delegates);
     Assert.IsNull(delegates.Delegates);
     Assert.IsFalse(delegates.Success);
     Assert.IsNotNull(delegates.Error);
 }
コード例 #2
0
 public void GetAllResultTest(SmartHoldemDelegateList delegates)
 {
     Assert.IsNotNull(delegates);
     Assert.IsNotNull(delegates.Delegates);
     Assert.IsTrue(delegates.Success);
     Assert.IsNull(delegates.Error);
     Assert.IsTrue(delegates.Delegates.Count > 0);
 }