Example #1
0
 public TAssertion Should()
 {
     PredicateString.Add("should");
     _filter.Materialize();
     if (!_filter.FilteredItems.Any())
     {
         PredicateString.Add("WARNING! No matches ******");
     }
     return(CeateAssertionFunc(_filter, _negate));
 }
Example #2
0
 public TAssertion Not()
 {
     PredicateString.Add("not");
     Verifier.Negate();
     return(LogicalLink.And());
 }