()
| 1167 | |
| 1168 | #[test] |
| 1169 | fn test_empty_graph() { |
| 1170 | let mut nodes = Vec::new(); |
| 1171 | let mut edges = Vec::new(); |
| 1172 | let mut stats = GraphStats::default(); |
| 1173 | |
| 1174 | let created = run_consolidate(&mut nodes, &mut edges, &mut stats); |
| 1175 | assert_eq!(created, 0); |
| 1176 | } |
| 1177 | |
| 1178 | #[test] |
| 1179 | fn test_only_goals() { |
nothing calls this directly
no test coverage detected