1.運行全部的測試用例android
2.運行單個測試類或某個TestSuiteshell
3.運行某個測試類裏面的某個測試方法測試
4.運行兩個不一樣的測試類或類中的方法ui
命令行運行Android Robotium自動化用例或單元測試用例 spa
舉個栗子:運行測試工程下的全部用例code
1 |
adb shell am instrument -w com.taobao.taobao. test /android . test .InstrumentationTestRunner |
舉個栗子:運行測試類com.taobao.taobao.test.TestRegister ip
1 |
adb shell am instrument -e class com.taobao.taobao. test .TestRegister -w com.taobao.taobao. test /android . test .InstrumentationTestRunner |
舉個栗子:運行com.taobao.taobao.test.TestRegister中的測試方法testRegisterit
adb shell am instrument -e class com.taobao.taobao.test.TestRegister#testRegister -w com.taobao.taobao.test/android.test.InstrumentationTestRunner 自動化
舉個栗子:運行com.taobao.taobao.test.TestLoginio
和com.taobao.taobao.test.TestRegister類中的方法testRegister
1 |
adb shell am instrument -e class com.taobao.taobao. test .TestLogin,com.taobao.taobao. test .TestRegister #testRegister -w com.taobao.taobao.test/android.test.InstrumentationTestRunner |