()
| 244 | |
| 245 | #[test] |
| 246 | fn row_kinds_roundtrip() { |
| 247 | let kinds = vec![0u8, 1, 2, 0, 0, 1]; |
| 248 | let data = encode_row_kinds(&kinds); |
| 249 | let out = decode_row_kinds(&data).unwrap(); |
| 250 | assert_eq!(out, kinds); |
| 251 | } |
| 252 | |
| 253 | #[test] |
| 254 | fn row_kinds_empty_roundtrip() { |
nothing calls this directly
no test coverage detected