(
bridge: &NativeBridge,
udid: &str,
phase: &str,
)
| 5408 | } |
| 5409 | |
| 5410 | fn perform_tvos_touch_phase( |
| 5411 | bridge: &NativeBridge, |
| 5412 | udid: &str, |
| 5413 | phase: &str, |
| 5414 | ) -> Result<(), crate::error::AppError> { |
| 5415 | if let Some(key_code) = tvos_remote_key_for_touch_phase(phase)? { |
| 5416 | press_tvos_remote_key(bridge, udid, key_code)?; |
| 5417 | } |
| 5418 | Ok(()) |
| 5419 | } |
| 5420 | |
| 5421 | fn perform_tvos_touch_command( |
| 5422 | bridge: &NativeBridge, |
no test coverage detected