()
| 660 | |
| 661 | #[test] |
| 662 | fn test_encode_decode_roundtrip_full() { |
| 663 | let original = make_envelope(); |
| 664 | let bytes = original.encode().unwrap(); |
| 665 | let decoded = SessionEnvelope::decode(&bytes).unwrap(); |
| 666 | assert_eq!(original, decoded); |
| 667 | } |
| 668 | |
| 669 | #[test] |
| 670 | fn test_encode_decode_roundtrip_minimal() { |
nothing calls this directly
no test coverage detected