()
| 913 | |
| 914 | #[test] |
| 915 | fn resolve_no_binary_found() { |
| 916 | let dir = tempfile::tempdir().unwrap(); |
| 917 | let config = PhpStanConfig::default(); |
| 918 | // No vendor/bin/phpstan, and PATH is unlikely to have it in test env. |
| 919 | // This test may still find phpstan on PATH in some environments, |
| 920 | // so we just verify it doesn't panic. |
| 921 | let _ = resolve_phpstan(Some(dir.path()), &config, None); |
| 922 | } |
| 923 | |
| 924 | // ── write_temp_file ───────────────────────────────────────────── |
| 925 |
nothing calls this directly
no test coverage detected