()
| 279 | |
| 280 | #[test] |
| 281 | fn attr_col_float64_roundtrip() { |
| 282 | let vals = vec![CellValue::Float64(1.5), CellValue::Float64(-2.5)]; |
| 283 | let data = encode_attr_col(&vals).unwrap(); |
| 284 | let out = decode_attr_col(&data).unwrap(); |
| 285 | assert_eq!(out, vals); |
| 286 | } |
| 287 | |
| 288 | #[test] |
| 289 | fn attr_col_string_roundtrip() { |
nothing calls this directly
no test coverage detected