Esempio n. 1
0
 public bool Equals(Core.Matcher other)
 {
     return(other.GetType() == typeof(ArgThatMatcher <T>) && this.predicate == ((ArgThatMatcher <T>)other).predicate);
 }
Esempio n. 2
0
 public bool Equals(Core.Matcher other)
 {
     return(other.GetType() == typeof(AnyOfMatcher <T>));
 }
Esempio n. 3
0
 public bool Equals(Core.Matcher other)
 {
     return(other.GetType() == typeof(RegexMatcher) && regex.Equals(((RegexMatcher)other).regex));
 }
Esempio n. 4
0
 public bool Equals(Core.Matcher other)
 {
     return(other.GetType() == typeof(NullMatcher));
 }
Esempio n. 5
0
 public bool Equals(Core.Matcher other)
 {
     return(other.GetType() == typeof(NotMatcher) && this.matcher.Equals(((NotMatcher)other).matcher));
 }
Esempio n. 6
0
 public bool Equals(Core.Matcher other)
 {
     return(other.GetType() == typeof(IsMatcher) && this.obj.Equals(((IsMatcher)other).obj));
 }
Esempio n. 7
0
 public bool Equals(Core.Matcher other)
 {
     return(other.GetType() == typeof(ContainsMatcher <T>) && this.obj.Equals(((ContainsMatcher <T>)other).obj));
 }