()
| 891 | |
| 892 | #[test] |
| 893 | fn test_postcard_is_compact() { |
| 894 | // Verify that postcard produces reasonably compact output. |
| 895 | // An IntentEntry with short strings should fit in well under 200 bytes. |
| 896 | let entry = sample_intent_entry(); |
| 897 | let bytes = entry.to_bytes(); |
| 898 | |
| 899 | assert!( |
| 900 | bytes.len() < 200, |
| 901 | "expected compact serialization, got {} bytes", |
| 902 | bytes.len() |
| 903 | ); |
| 904 | } |
| 905 | |
| 906 | #[test] |
| 907 | fn test_session_record_roundtrip() { |
nothing calls this directly
no test coverage detected