()
| 652 | |
| 653 | #[test] |
| 654 | fn test_postcard_is_compact() { |
| 655 | // Verify that postcard produces reasonably compact output. |
| 656 | // An IntentEntry with short strings should fit in well under 200 bytes. |
| 657 | let entry = sample_intent_entry(); |
| 658 | let bytes = entry.to_bytes(); |
| 659 | |
| 660 | assert!( |
| 661 | bytes.len() < 200, |
| 662 | "expected compact serialization, got {} bytes", |
| 663 | bytes.len() |
| 664 | ); |
| 665 | } |
| 666 | } |
nothing calls this directly
no test coverage detected