(&self, args: [&str; N])
| 1013 | } |
| 1014 | |
| 1015 | fn run_emulator<const N: usize>(&self, args: [&str; N]) -> Result<String, AppError> { |
| 1016 | run_command_text(self.emulator_path(), args) |
| 1017 | } |
| 1018 | |
| 1019 | fn run_avdmanager<const N: usize>(&self, args: [&str; N]) -> Result<String, AppError> { |
| 1020 | run_command_text(self.avdmanager_path(), args) |
no test coverage detected