def test_cuando_encuentra_elemento_es_true(self): arbol = Arbol(2, Arbol(43, Arbol(3), Arbol(56)), Arbol(4)) self.assertTrue(arbol.find(56))
def test_cuando_el_elemento_no_esta_es_false(self): arbol = Arbol(2, Arbol(43, Arbol(3), Arbol(56)), Arbol(4)) self.assertFalse(arbol.find(1000))
def test_cuando_arbol_vacio_es_false(self): arbol = Arbol() self.assertFalse(arbol.find(4))