()
| 668 | |
| 669 | #[test] |
| 670 | fn test_encode_decode_roundtrip_minimal() { |
| 671 | let original = make_minimal_envelope(); |
| 672 | let bytes = original.encode().unwrap(); |
| 673 | let decoded = SessionEnvelope::decode(&bytes).unwrap(); |
| 674 | assert_eq!(original, decoded); |
| 675 | } |
| 676 | |
| 677 | #[test] |
| 678 | fn test_encode_decode_roundtrip_with_prompt_hash() { |
nothing calls this directly
no test coverage detected