()
| 792 | |
| 793 | #[test] |
| 794 | fn parse_empty_result() { |
| 795 | let content = "<?php\n"; |
| 796 | let file_path = "/tmp/phpantom-mago-abc.php"; |
| 797 | let json = r#"{"issues": []}"#; |
| 798 | let diags = parse_mago_json(json, content, file_path, "mago-lint").unwrap(); |
| 799 | assert!(diags.is_empty()); |
| 800 | } |
| 801 | |
| 802 | // ── severity mapping ──────────────────────────────────────────── |
| 803 |
nothing calls this directly
no test coverage detected