()
| 44 | |
| 45 | #[test] |
| 46 | fn cycle() { |
| 47 | let i = TINY_EWD; |
| 48 | let graph = create_graph(i); |
| 49 | let cycle = EdgeWeightedDirectedCycle::from(graph.as_ref()); |
| 50 | assert!(cycle.check().is_ok()); |
| 51 | } |
| 52 | |
| 53 | #[allow(non_snake_case)] |
| 54 | #[test] |
nothing calls this directly
no test coverage detected