()
| 286 | |
| 287 | #[test] |
| 288 | fn insert_strided_end() { |
| 289 | let mut input = vec![1, 2, 3, 4]; |
| 290 | insert_slice_strided(&mut input, &[5, 6], 4, 4); |
| 291 | assert_eq!(input, vec![1, 2, 3, 4, 5, 5, 5, 5, 6, 6, 6, 6]); |
| 292 | } |
| 293 | |
| 294 | #[test] |
| 295 | fn replace_strided() { |
nothing calls this directly
no test coverage detected