()
| 992 | |
| 993 | #[test] |
| 994 | fn test_deserialize_too_short() { |
| 995 | let result = Attestation::deserialize(b"AT"); |
| 996 | assert!(result.is_err()); |
| 997 | } |
| 998 | |
| 999 | #[test] |
| 1000 | fn test_deserialize_wrong_magic() { |
nothing calls this directly
no test coverage detected