()
| 368 | |
| 369 | #[test] |
| 370 | fn test_view_state_too_short() { |
| 371 | let bytes = [0u8; 4]; // Too short |
| 372 | let result = deserialize_view_state(&bytes); |
| 373 | assert!(result.is_err()); |
| 374 | } |
| 375 | |
| 376 | #[test] |
| 377 | fn test_view_state_truncated() { |
nothing calls this directly
no test coverage detected