Android系统单元测试方法(12)

发表于:2011-06-30来源:未知作者:领测软件测试网采编点击数: 标签:
adbshellaminstrument-e class com.android.ut.test.TestApp-wcom.android.ut/android.test.InstrumentationTestRunner adb shell am instrument -e class com.android.ut.test.TestApp -wcom.android.ut/android.te
  1.   adb shell am instrument -e class com.android.ut.test.TestApp -wcom.android.ut/android.test.InstrumentationTestRunner  


  这样你就可以看到测试结果了。

Java代码 复制代码 收藏代码
  1. # am instrument -e class com.cn.test.TestApp -w com.cn/android.test.InstrumentationTestRunner   
  2.   
  3. com.cn.test.TestApp:..   
  4. Test results for InstrumentationTestRunner=..   
  5. Time: 2.866  
  6.   
  7. OK (2 tests)  


后台测试log日志信息

Java代码 复制代码 收藏代码
  1. D/AndroidRuntime(  941): >>>>>>>>>>>>>> AndroidRuntime START <<<<<<<<<<<<<<   
  2. D/AndroidRuntime(  941): CheckJNI is ON   
  3. D/AndroidRuntime(  941): --- registering native functions ---   
  4. D/FileBackupHelper_native(  941): register_android_backup_FileBackupHelper   
  5. D/ActivityManager(  581): Uninstalling process com.cn   
  6. I/ActivityManager(  581): Start proc com.cn for added application com.cn: pid=948 uid=10013 gids={}   
  7. I/TestRunner(  948): started: testSum(com.cn.test.TestApp)      //启动add()测试方法   
  8. I/ActivityManager(  581): Starting activity: Intent { act=android.intent.action.MAIN flg=0x10000000 cmp=com.cn/.AndroidUT }   
  9. I/ActivityManager(  581): Displayed activity com.cn/.AndroidUT: 

    原文转自:http://www.ltesting.net