()
| 410 | |
| 411 | #[test] |
| 412 | fn shortest_path_direct() { |
| 413 | let csr = make_csr(); |
| 414 | let path = csr |
| 415 | .shortest_path("a", "c", Some("KNOWS"), 5, DEFAULT_MAX_VISITED, None) |
| 416 | .unwrap(); |
| 417 | assert_eq!(path, vec!["a", "b", "c"]); |
| 418 | } |
| 419 | |
| 420 | #[test] |
| 421 | fn shortest_path_same_node() { |
nothing calls this directly
no test coverage detected