()
| 258 | |
| 259 | #[test] |
| 260 | fn insert_slice_middle() { |
| 261 | let mut input = vec![1, 2, 3]; |
| 262 | insert_slice(&mut input, &[4, 5, 6], 2); |
| 263 | assert_eq!(input, vec![1, 2, 4, 5, 6, 3]); |
| 264 | } |
| 265 | |
| 266 | #[test] |
| 267 | fn insert_slice_end() { |
nothing calls this directly
no test coverage detected