예제 #1
0
 protected bool Equals(AnnotatedTest other)
 {
     return(string.Equals(EquivalanceClass, other.EquivalanceClass) && IndividualTest.Equals(other.IndividualTest) &&
            Concepts.OrderBy(o => o).SequenceEqual(other.Concepts.OrderBy(o => o)));
 }
예제 #2
0
 protected bool Equals(IndividualTest other)
 {
     return(string.Equals(TestName, other.TestName));
 }