()
| 435 | |
| 436 | #[test] |
| 437 | fn shortest_path_depth_limit() { |
| 438 | let csr = make_csr(); |
| 439 | let path = csr.shortest_path("a", "d", Some("KNOWS"), 1, DEFAULT_MAX_VISITED, None); |
| 440 | assert!(path.is_none()); |
| 441 | } |
| 442 | |
| 443 | #[test] |
| 444 | fn subgraph_materialization() { |
nothing calls this directly
no test coverage detected