()
| 11 | |
| 12 | #[test] |
| 13 | fn parser() { |
| 14 | //test parser |
| 15 | let i = TINY_DG; |
| 16 | let graph = Digraph::from(i); |
| 17 | assert_eq!(graph.V(), 13); |
| 18 | assert_eq!(graph.E(), 22); |
| 19 | } |
| 20 | |
| 21 | #[test] |
| 22 | fn dfs() { |
nothing calls this directly
no outgoing calls
no test coverage detected