()
| 347 | #[test] |
| 348 | #[should_panic(expected = "length overflow")] |
| 349 | fn test_end_overflow() { |
| 350 | let buffer = Buffer::from_iter([0_i32, 1, 2]); |
| 351 | ScalarBuffer::<i32>::new(buffer, 0, usize::MAX / 4 + 1); |
| 352 | } |
| 353 | |
| 354 | #[test] |
| 355 | fn convert_from_buffer_builder() { |
nothing calls this directly
no test coverage detected