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"); }); }
public void TestLoadForTotalCall() { _responseWithObject .TestLoad("load for total call", "total-call", x => x > 0) .Assert("load for total call"); }