25 lines
444 B
Python
Raw Normal View History

import unittest
2015-08-02 10:53:35 -04:00
class TestHeight(unittest.TestCase):
2015-08-02 10:53:35 -04:00
def test_height(self):
2016-08-14 08:29:25 -04:00
bst = BstHeight(Node(5))
self.assertEqual(bst.height(bst.root), 1)
2016-08-14 08:29:25 -04:00
bst.insert(2)
bst.insert(8)
bst.insert(1)
bst.insert(3)
self.assertEqual(bst.height(bst.root), 3)
2015-08-02 10:53:35 -04:00
print('Success: test_height')
def main():
test = TestHeight()
test.test_height()
if __name__ == '__main__':
main()