Example #1
0
 public bool Equals(WithMatcher <T> other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(base.Equals(other) && Equals(Condition, other.Condition));
 }
Example #2
0
 public WithExpressionMatcher(WithMatcher matcher)
 {
     _matcher = matcher;
 }