(server_url: &str, udid: &str, bundle_id: &str)
| 19 | } |
| 20 | |
| 21 | fn service_launch(server_url: &str, udid: &str, bundle_id: &str) -> anyhow::Result<()> { |
| 22 | service_action_ok( |
| 23 | server_url, |
| 24 | udid, |
| 25 | &serde_json::json!({ "action": "launch", "bundleId": bundle_id }), |
| 26 | ) |
| 27 | } |
| 28 | |
| 29 | fn service_performance_json( |
| 30 | server_url: &str, |
no test coverage detected