()
| 20 | |
| 21 | #[test] |
| 22 | fn dfs() { |
| 23 | let graph = create_digraph(TINY_DG); |
| 24 | let order = DepthFirstOrders::from(graph.as_ref()); |
| 25 | assert!(order.check().is_ok()); |
| 26 | } |
| 27 | |
| 28 | #[test] |
| 29 | fn dfs_paths() { |
nothing calls this directly
no test coverage detected