現在,我寫了一個批處理腳本運行,如命令:然後在控制檯我得到這樣FAILURE!!! Tests run: 5 fail:4
結果我怎樣才能退出代碼或退出狀態完成後,在命令行上robotium測試
adb -s emulator-5556 shell am instrument -e class com.example.test.locationListTest -w com.example.test/android.test.InstrumentationTestRun
或OK
。
我使用if errorlevel 0
來確定上面的命令,但它給了我0,不管上面的命令給我,OK還是FAILURE。
我需要做這個批處理腳本是這樣的:
if(adb -s emulator-5556 shell ..... test.InstrumentationTestRun == SUCCESS)
do (.........)
else (.........)