Ejemplo n.º 1
0
        public void CompareMethodTestLastCase()
        {
            BTN  second = new BTN();
            bool result = BinaryTreeOperations.Compare(null, second);

            Assert.IsFalse(result);
        }
Ejemplo n.º 2
0
        public void CompareMethodTestThirdCase()
        {
            BTN first  = new BTN();
            BTN second = new BTN();

            this.createThirdCaseObjects(first, second);
            bool result = BinaryTreeOperations.Compare(first, second);

            Assert.IsFalse(result);
        }