()
| 272 | |
| 273 | #[test] |
| 274 | fn insert_strided_empty() { |
| 275 | let mut input = vec![]; |
| 276 | insert_slice_strided(&mut input, &[1, 2, 3], 0, 2); |
| 277 | assert_eq!(input, vec![1, 1, 2, 2, 3, 3]); |
| 278 | } |
| 279 | |
| 280 | #[test] |
| 281 | fn insert_strided_middle() { |
nothing calls this directly
no test coverage detected