()
| 362 | |
| 363 | #[test] |
| 364 | fn pack_roundtrips_through_the_wire() { |
| 365 | let pack = sample_pack(); |
| 366 | let bytes = pack.encode().expect("encode"); |
| 367 | let decoded = SyncPack::decode(&bytes).expect("decode"); |
| 368 | assert_eq!(decoded, pack); |
| 369 | } |
| 370 | |
| 371 | #[test] |
| 372 | fn wants_roundtrip_and_all_helper() { |
nothing calls this directly
no test coverage detected