Equals() public method

The equals.
public Equals ( ComplexChain complexChain ) : bool
complexChain ComplexChain /// The complex chain. ///
return bool
 public void ClearAtTest()
 {
     var secondComplexChain = new ComplexChain("AGTC");
     var firstComplexChain = new ComplexChain("ATC");
     secondComplexChain.ClearAt(1);
     Assert.True(firstComplexChain.Equals(secondComplexChain));
 }
        public void SubstringTest()
        {
            int start = 0, end = 2;
            var thirdComplexChain = new ComplexChain("AA");
            var foreignComplexChain = new ComplexChain(chain.Substring(start, end));

            Assert.True(thirdComplexChain.Equals(foreignComplexChain));
        }