(&self, udid: &str)
| 305 | } |
| 306 | |
| 307 | pub fn simulator(&self, udid: &str) -> Result<Option<Simulator>, AppError> { |
| 308 | Ok(self |
| 309 | .list_simulators()? |
| 310 | .into_iter() |
| 311 | .find(|simulator| simulator.udid == udid)) |
| 312 | } |
| 313 | |
| 314 | pub fn simulator_is_tvos(&self, udid: &str) -> Result<bool, AppError> { |
| 315 | Ok(self |
no test coverage detected