()
| 36 | |
| 37 | #[test] |
| 38 | fn dfs() { |
| 39 | let i = TINY_EWD; |
| 40 | let graph = create_graph(i); |
| 41 | let order = DepthFirstOrders::from(graph.as_ref()); |
| 42 | assert!(order.check().is_ok()); |
| 43 | } |
| 44 | |
| 45 | #[test] |
| 46 | fn cycle() { |
nothing calls this directly
no test coverage detected