(&self, args: [&str; N])
| 1009 | } |
| 1010 | |
| 1011 | fn run_adb_bytes<const N: usize>(&self, args: [&str; N]) -> Result<Vec<u8>, AppError> { |
| 1012 | run_command_bytes(self.adb_path(), args) |
| 1013 | } |
| 1014 | |
| 1015 | fn run_emulator<const N: usize>(&self, args: [&str; N]) -> Result<String, AppError> { |
| 1016 | run_command_text(self.emulator_path(), args) |
no test coverage detected