()
| 207 | |
| 208 | #[test] |
| 209 | fn test_offset_buffer_empty() { |
| 210 | let buffer = OffsetBuffer::<i32>::with_capacity(0); |
| 211 | let array = buffer.into_array(None, ArrowType::Utf8); |
| 212 | let strings = array.as_any().downcast_ref::<StringArray>().unwrap(); |
| 213 | assert_eq!(strings.len(), 0); |
| 214 | } |
| 215 | |
| 216 | #[test] |
| 217 | fn test_offset_buffer_append() { |
nothing calls this directly
no test coverage detected