()
| 349 | |
| 350 | #[test] |
| 351 | fn test_view_state_too_short() { |
| 352 | let bytes = [0u8; 4]; // Too short |
| 353 | let result = deserialize_view_state(&bytes); |
| 354 | assert!(result.is_err()); |
| 355 | } |
| 356 | |
| 357 | #[test] |
| 358 | fn test_view_state_truncated() { |
nothing calls this directly
no test coverage detected