()
| 419 | |
| 420 | #[test] |
| 421 | fn shortest_path_same_node() { |
| 422 | let csr = make_csr(); |
| 423 | let path = csr |
| 424 | .shortest_path("a", "a", None, 5, DEFAULT_MAX_VISITED, None) |
| 425 | .unwrap(); |
| 426 | assert_eq!(path, vec!["a"]); |
| 427 | } |
| 428 | |
| 429 | #[test] |
| 430 | fn shortest_path_unreachable() { |
nothing calls this directly
no test coverage detected