mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
29 lines
545 B
Python
29 lines
545 B
Python
import unittest
|
|
|
|
|
|
class TestBfs(unittest.TestCase):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(TestBfs, self).__init__()
|
|
self.results = Results()
|
|
|
|
def test_bfs(self):
|
|
bst = BstBfs(Node(5))
|
|
bst.insert(2)
|
|
bst.insert(8)
|
|
bst.insert(1)
|
|
bst.insert(3)
|
|
bst.bfs(self.results.add_result)
|
|
self.assertEqual(str(self.results), '[5, 2, 8, 1, 3]')
|
|
|
|
print('Success: test_bfs')
|
|
|
|
|
|
def main():
|
|
test = TestBfs()
|
|
test.test_bfs()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|