コード例 #1
0
 public void TestLoadforMoreThanTotalCallShouldThrow()
 {
     Assert.Throws <AssertException>(() =>
     {
         _responseWithObject
         .TestLoad("load for more than total call", "total-call", x => x > 3)
         .Assert("load for more than total call");
     });
 }
コード例 #2
0
 public void TestLoadForTotalCall()
 {
     _responseWithObject
     .TestLoad("load for total call", "total-call", x => x > 0)
     .Assert("load for total call");
 }