()
| 1405 | #[test] |
| 1406 | #[should_panic = "out of bounds for buffer of length"] |
| 1407 | fn test_mutable_set_null_bits_oob() { |
| 1408 | let mut buffer = MutableBuffer::new(64); |
| 1409 | buffer.set_null_bits(1, buffer.capacity()); |
| 1410 | } |
| 1411 | |
| 1412 | #[test] |
| 1413 | #[should_panic = "out of bounds for buffer of length"] |
nothing calls this directly
no test coverage detected