()
| 415 | |
| 416 | #[test] |
| 417 | fn test_parse_v4_as_v4() { |
| 418 | // Parse V4 binary artifact as V4 using UnwindData::parse |
| 419 | let parsed_v4 = UnwindData::parse(V4_BINARY).expect("Failed to parse V4 data as V4"); |
| 420 | |
| 421 | // Should match expected V4 data (without an eh_frame_hdr) |
| 422 | let expected_v4 = create_sample_v4(); |
| 423 | assert_eq!(parsed_v4, expected_v4); |
| 424 | } |
| 425 | |
| 426 | #[test] |
| 427 | fn test_parse_v2_as_v2() { |
nothing calls this directly
no test coverage detected