(&self, args: [&str; N])
| 1005 | } |
| 1006 | |
| 1007 | fn run_adb<const N: usize>(&self, args: [&str; N]) -> Result<String, AppError> { |
| 1008 | run_command_text(self.adb_path(), args) |
| 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) |
no test coverage detected