()
| 228 | |
| 229 | #[test] |
| 230 | fn statistics_empty_graph() { |
| 231 | let csr = CsrIndex::new(); |
| 232 | let stats = csr.compute_statistics().unwrap(); |
| 233 | assert_eq!(stats.node_count, 0); |
| 234 | assert_eq!(stats.edge_count, 0); |
| 235 | assert_eq!(stats.label_count, 0); |
| 236 | } |
| 237 | |
| 238 | #[test] |
| 239 | fn statistics_basic() { |
nothing calls this directly
no test coverage detected