()
| 164 | |
| 165 | #[test] |
| 166 | fn header_roundtrip() { |
| 167 | let header = make_header(1 | REQUIRED_FLAG, 3); |
| 168 | let bytes = header.to_bytes(); |
| 169 | assert_eq!(header, RecordHeader::from_bytes(&bytes)); |
| 170 | } |
| 171 | |
| 172 | #[test] |
| 173 | fn header_golden_54_bytes_exact_offsets() { |
nothing calls this directly
no test coverage detected