()
| 310 | |
| 311 | #[test] |
| 312 | fn known_arrays() { |
| 313 | let reg = registry(); |
| 314 | reg.record("a", r(1), hlc(10)); |
| 315 | reg.record("b", r(1), hlc(20)); |
| 316 | let mut arrays = reg.known_arrays(); |
| 317 | arrays.sort(); |
| 318 | assert_eq!(arrays, vec!["a", "b"]); |
| 319 | } |
| 320 | } |
nothing calls this directly
no test coverage detected