(expr: &Rank, expected: Vec<u64>)
| 380 | |
| 381 | #[expect(clippy::single_range_in_vec_init)] |
| 382 | fn test_without_rank(expr: &Rank, expected: Vec<u64>) -> Result<()> { |
| 383 | test_i32_result(expr, vec![0..8], expected) |
| 384 | } |
| 385 | |
| 386 | fn test_i32_result( |
| 387 | expr: &Rank, |
no test coverage detected
searching dependent graphs…