interactive-coding-challenges/graphs_trees/tree_height/test_height.py

25 lines
444 B
Python
Raw Normal View History

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