()
| 279 | |
| 280 | #[test] |
| 281 | fn insert_strided_middle() { |
| 282 | let mut input = vec![1, 2, 3, 4]; |
| 283 | insert_slice_strided(&mut input, &[5, 6], 2, 2); |
| 284 | assert_eq!(input, vec![1, 2, 5, 5, 6, 6, 3, 4]); |
| 285 | } |
| 286 | |
| 287 | #[test] |
| 288 | fn insert_strided_end() { |
nothing calls this directly
no test coverage detected