Exemple #1
0
 public bool Equals(FixtureFilter other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.Type, Type) && Equals(other.Name, Name));
 }
Exemple #2
0
 public void AddFilter(FixtureFilter filter)
 {
     _filters.Add(filter);
 }
 public bool Equals(FixtureFilter other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.Type, Type) && Equals(other.Name, Name);
 }