()
| 998 | |
| 999 | #[test] |
| 1000 | fn test_deserialize_wrong_magic() { |
| 1001 | let result = Attestation::deserialize(b"NOPE____data"); |
| 1002 | assert!(result.is_err()); |
| 1003 | } |
| 1004 | |
| 1005 | #[test] |
| 1006 | fn test_deserialize_corrupted_payload() { |
nothing calls this directly
no test coverage detected