(command: &str)
| 609 | } |
| 610 | |
| 611 | fn is_relevant_app_process(command: &str) -> bool { |
| 612 | command.contains(".app/") || command.contains(".appex/") || command.contains("WebContent") |
| 613 | } |
| 614 | |
| 615 | fn is_simulator_probe_process(command: &str) -> bool { |
| 616 | let executable = process_name_from_command(command); |
no outgoing calls
no test coverage detected