()
| 1382 | |
| 1383 | #[test] |
| 1384 | fn test_exception_table_empty() { |
| 1385 | let entries: Vec<ExceptionTableEntry> = vec![]; |
| 1386 | let encoded = encode_exception_table(&entries); |
| 1387 | assert!(encoded.is_empty()); |
| 1388 | assert!(find_exception_handler(&encoded, 0).is_none()); |
| 1389 | } |
| 1390 | |
| 1391 | #[test] |
| 1392 | fn test_exception_table_single_entry() { |
nothing calls this directly
no test coverage detected