예제 #1
0
        private bool Equals(TestCaseElement other)
        {
            bool result;

            if (other == null)
            {
                result = false;
            }
            else
            {
                result = Equals(Id, other.Id) &&
                         Equals(TypeName, other.TypeName) &&
                         Equals(AssemblyLocation, other.AssemblyLocation) &&
                         Equals(ShortName, other.ShortName);
            }

            return(result);
        }
        private bool Equals(TestCaseElement other)
        {
            bool result;

            if (other == null)
                result = false;
            else
                result = Equals(Id, other.Id) &&
                         Equals(TypeName, other.TypeName) &&
                         Equals(AssemblyLocation, other.AssemblyLocation) &&
                         Equals(ShortName, other.ShortName);

            return result;
        }