()
| 4 | use std::time::Duration; |
| 5 | |
| 6 | pub fn start() -> anyhow::Result<()> { |
| 7 | run_xcrun(["simctl", "list", "devices"])?; |
| 8 | print_status("start"); |
| 9 | Ok(()) |
| 10 | } |
| 11 | |
| 12 | pub fn shutdown() -> anyhow::Result<()> { |
| 13 | let _ = Command::new("xcrun") |
no test coverage detected