()
| 1486 | |
| 1487 | #[test] |
| 1488 | fn test_u32() -> Result<()> { |
| 1489 | let array = UInt32Array::from(vec![Some(2), None, Some(1), None]); |
| 1490 | let data = array.into_data(); |
| 1491 | test_round_trip(&data) |
| 1492 | } |
| 1493 | |
| 1494 | #[test] |
| 1495 | fn test_u64() -> Result<()> { |
nothing calls this directly
no test coverage detected