在另一个apk中开始测试apk

时间:2016-12-29 08:29:36

标签: android testing

Android版:4.1。

我想测试我的apk没有电脑,所以我写了android apk来做它。

 Process proc = Runtime.getRuntime().exec(command);

    try {
        if (proc.waitFor() != 0) {
            System.err.println("exit value = " + proc.exitValue());
           // proc.waitFor();
        }
        BufferedReader in = new BufferedReader(new InputStreamReader(
                proc.getInputStream()));
        StringBuffer stringBuffer = new StringBuffer();
        String line = null;
        while ((line = in.readLine()) != null) {
            stringBuffer.append(line+"\n");
        }

       // proc.waitFor();
        System.out.println(stringBuffer.toString());
        Log.i("info",stringBuffer.toString());
        return  stringBuffer.toString();
    } catch (InterruptedException e) {
        System.err.println(e);
    }

,命令是

am instrument -w -e deleteCase no com.calculator.test/com.xx.test.runner.Runner1

但它没有用。

0 个答案:

没有答案