命令工具

public final class CommandUtil
extends Object

java.lang.Object
com.android.sts.common.CommandUtil


幫助透過 adb 在裝置上運行命令的實用程式集合

概括

公共方法

static CommandResult runAndCheck (ITestDevice device, String cmd, int retries)

在裝置上執行 shell 指令,如果指令不回傳 0,則拋出 AsclusionError。

static CommandResult runAndCheck (ITestDevice device, String cmd)

在裝置上執行 shell 指令,如果指令不回傳 0,則拋出 AsclusionError。

公共方法

運行並檢查

public static CommandResult runAndCheck (ITestDevice device, 
                String cmd, 
                int retries)

在裝置上執行 shell 指令,如果指令不回傳 0,則拋出 AsclusionError。

參數
device ITestDevice :要使用的設備

cmd String : 要執行的命令

retries int : 嘗試重試的次數

退貨
CommandResult device.executeShellV2Command 的結果

投擲
DeviceNotAvailableException

運行並檢查

public static CommandResult runAndCheck (ITestDevice device, 
                String cmd)

在裝置上執行 shell 指令,如果指令不回傳 0,則拋出 AsclusionError。

參數
device ITestDevice :要使用的設備

cmd String : 要執行的命令

退貨
CommandResult device.executeShellV2Command 的結果

投擲
DeviceNotAvailableException