()
| 314 | |
| 315 | |
| 316 | def test_contains_cycle(): |
| 317 | assert (get_test_graph_1().contains_cycle() == False) |
| 318 | assert (get_test_graph_2().contains_cycle() == False) |
| 319 | assert (get_test_graph_3().contains_cycle() == False) |
| 320 | assert (get_test_graph_4().contains_cycle() == True) |
| 321 | |
| 322 | |
| 323 | def test_topological_sort(): |
no test coverage detected