(&self, udid: &str)
| 312 | } |
| 313 | |
| 314 | pub fn simulator_is_tvos(&self, udid: &str) -> Result<bool, AppError> { |
| 315 | Ok(self |
| 316 | .simulator(udid)? |
| 317 | .as_ref() |
| 318 | .map(simulator_is_tvos) |
| 319 | .unwrap_or(false)) |
| 320 | } |
| 321 | |
| 322 | pub fn simulator_has_fixed_orientation(&self, udid: &str) -> Result<bool, AppError> { |
| 323 | Ok(self |
no test coverage detected