MCPcopy Index your code
hub / github.com/jwasham/practice-python / test_bfs

Function test_bfs

graphs/directed_graph_list.py:310–313  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

308
309
310def test_bfs():
311 dg1 = get_test_graph_1()
312 p1 = dg1.bfs()
313 assert (p1 == {1: 0, 2: 1, 4: 2, 5: 0, 6: 2, 8: 5})
314
315
316def test_contains_cycle():

Callers 1

mainFunction · 0.70

Calls 2

get_test_graph_1Function · 0.70
bfsMethod · 0.45

Tested by

no test coverage detected