mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
27 lines
492 B
Python
27 lines
492 B
Python
from nose.tools import assert_equal
|
|
|
|
|
|
class TestBfs(object):
|
|
|
|
def __init__(self):
|
|
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)
|
|
assert_equal(str(self.results), '[5, 2, 8, 1, 3]')
|
|
|
|
print('Success: test_bfs')
|
|
|
|
|
|
def main():
|
|
test = TestBfs()
|
|
test.test_bfs()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |