()
| 650 | |
| 651 | #[test] |
| 652 | fn test_builder_prompt_hash_direct() { |
| 653 | let hash = [42u8; 32]; |
| 654 | let e = SessionEnvelope::builder("s", "a").prompt_hash(hash).build(); |
| 655 | |
| 656 | assert_eq!(e.prompt_hash, Some(hash)); |
| 657 | } |
| 658 | |
| 659 | // Encode / Decode roundtrip |
| 660 |
nothing calls this directly
no test coverage detected