(
&self,
args: [&str; N],
stdin: &str,
)
| 1021 | } |
| 1022 | |
| 1023 | fn run_avdmanager_with_stdin<const N: usize>( |
| 1024 | &self, |
| 1025 | args: [&str; N], |
| 1026 | stdin: &str, |
| 1027 | ) -> Result<String, AppError> { |
| 1028 | run_command_text_with_stdin(self.avdmanager_path(), args, stdin) |
| 1029 | } |
| 1030 | |
| 1031 | fn run_sdkmanager<const N: usize>(&self, args: [&str; N]) -> Result<String, AppError> { |
| 1032 | run_command_text(self.sdkmanager_path(), args) |
no test coverage detected