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)); }
public WithExpressionMatcher(WithMatcher matcher) { _matcher = matcher; }