(&self, serial: &str, script: &str)
| 1001 | } |
| 1002 | |
| 1003 | fn run_adb_shell(&self, serial: &str, script: &str) -> Result<String, AppError> { |
| 1004 | self.run_adb(["-s", serial, "shell", script]) |
| 1005 | } |
| 1006 | |
| 1007 | fn run_adb<const N: usize>(&self, args: [&str; N]) -> Result<String, AppError> { |
| 1008 | run_command_text(self.adb_path(), args) |
no test coverage detected