()
| 689 | |
| 690 | #[test] |
| 691 | fn resolve_disabled_when_empty_string() { |
| 692 | let config = PhpcsConfig { |
| 693 | command: Some(String::new()), |
| 694 | standard: None, |
| 695 | timeout: None, |
| 696 | }; |
| 697 | let result = resolve_phpcs(None, &config, None); |
| 698 | assert!(result.is_none()); |
| 699 | } |
| 700 | |
| 701 | #[test] |
| 702 | fn resolve_explicit_command() { |
nothing calls this directly
no test coverage detected