()
| 267 | |
| 268 | #[test] |
| 269 | fn attr_col_int64_roundtrip() { |
| 270 | let vals = vec![ |
| 271 | CellValue::Int64(10), |
| 272 | CellValue::Int64(-5), |
| 273 | CellValue::Int64(0), |
| 274 | ]; |
| 275 | let data = encode_attr_col(&vals).unwrap(); |
| 276 | let out = decode_attr_col(&data).unwrap(); |
| 277 | assert_eq!(out, vals); |
| 278 | } |
| 279 | |
| 280 | #[test] |
| 281 | fn attr_col_float64_roundtrip() { |
nothing calls this directly
no test coverage detected