()
| 700 | |
| 701 | #[test] |
| 702 | fn resolve_explicit_command() { |
| 703 | let config = PhpcsConfig { |
| 704 | command: Some("custom/phpcs".to_string()), |
| 705 | standard: None, |
| 706 | timeout: None, |
| 707 | }; |
| 708 | let result = resolve_phpcs(None, &config, None); |
| 709 | assert!(result.is_some()); |
| 710 | assert_eq!(result.unwrap().path, PathBuf::from("custom/phpcs")); |
| 711 | } |
| 712 | |
| 713 | // ── PhpcsConfig helpers ───────────────────────────────────────── |
| 714 |
nothing calls this directly
no test coverage detected