()
| 265 | |
| 266 | #[test] |
| 267 | fn insert_slice_end() { |
| 268 | let mut input = vec![1, 2, 3]; |
| 269 | insert_slice(&mut input, &[4, 5, 6], 3); |
| 270 | assert_eq!(input, vec![1, 2, 3, 4, 5, 6]); |
| 271 | } |
| 272 | |
| 273 | #[test] |
| 274 | fn insert_strided_empty() { |
nothing calls this directly
no test coverage detected