()
| 206 | |
| 207 | #[test] |
| 208 | fn roundtrip_empty_payload() { |
| 209 | let framed = encode_snapshot_chunk(SnapshotEngineId::KeyValue, &[]); |
| 210 | let (id, payload) = decode_snapshot_chunk(&framed).unwrap(); |
| 211 | assert_eq!(id, SnapshotEngineId::KeyValue); |
| 212 | assert!(payload.is_empty()); |
| 213 | } |
| 214 | |
| 215 | #[test] |
| 216 | fn tamper_magic_returns_magic_mismatch() { |
nothing calls this directly
no test coverage detected