BuildUtils.AggregateTestResult.Equals C# (CSharp) Method

Equals() public method

public Equals ( AggregateTestResult other ) : bool
other AggregateTestResult
return bool
        public bool Equals(AggregateTestResult other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.TestName, TestName);
        }

Same methods

AggregateTestResult::Equals ( object obj ) : bool