(duration_ms: u64)
| 5390 | } |
| 5391 | |
| 5392 | fn sleep_ms(duration_ms: u64) { |
| 5393 | if duration_ms > 0 { |
| 5394 | std::thread::sleep(Duration::from_millis(duration_ms)); |
| 5395 | } |
| 5396 | } |
| 5397 | |
| 5398 | fn bridge_simulator_is_tvos(bridge: &NativeBridge, udid: &str) -> bool { |
| 5399 | bridge.simulator_is_tvos(udid).unwrap_or(false) |
no test coverage detected