()
| 294 | |
| 295 | #[test] |
| 296 | fn test_parse_invalid_file() { |
| 297 | let path = write_temp_dll("not_a_dll.bin", b"this is not a PE file"); |
| 298 | let result = parse_exports(&path); |
| 299 | assert!(result.is_err()); |
| 300 | fs::remove_file(&path).ok(); |
| 301 | } |
| 302 | |
| 303 | #[test] |
| 304 | fn test_dll_stem() { |
nothing calls this directly
no test coverage detected