(command: &str)
| 613 | } |
| 614 | |
| 615 | fn is_simulator_probe_process(command: &str) -> bool { |
| 616 | let executable = process_name_from_command(command); |
| 617 | executable == "simctl" || executable == "xcrun" && command.contains(" simctl ") |
| 618 | } |
| 619 | |
| 620 | fn process_role(command: &str) -> String { |
| 621 | if command.contains(".appex/") { |
no test coverage detected