()
| 428 | |
| 429 | #[test] |
| 430 | fn shortest_path_unreachable() { |
| 431 | let csr = make_csr(); |
| 432 | let path = csr.shortest_path("d", "a", Some("KNOWS"), 5, DEFAULT_MAX_VISITED, None); |
| 433 | assert!(path.is_none()); |
| 434 | } |
| 435 | |
| 436 | #[test] |
| 437 | fn shortest_path_depth_limit() { |
nothing calls this directly
no test coverage detected