mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
27 lines
495 B
Python
27 lines
495 B
Python
from nose.tools import assert_equal
|
|
|
|
|
|
class TestBfs(object):
|
|
|
|
def __init__(self):
|
|
self.results = Results()
|
|
|
|
def test_bfs(self):
|
|
node = Node(5)
|
|
insert(node, 2)
|
|
insert(node, 8)
|
|
insert(node, 1)
|
|
insert(node, 3)
|
|
bfs(node, 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() |