Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android實踐-快速搭建Android jUnit測試環境

Android實踐-快速搭建Android jUnit測試環境

編輯:關於Android編程

快速搭建Android jUnit測試環境

測試的分類: 源代碼透明度 : 黑盒測試:不知道源代碼,關系用戶操作。 白盒測試:根據源代碼編寫測試用例。測試粒度: 方法測試:function test 單元測試:jUnit test 集成測試:intergration test測試次數: 冒煙測試:smoke test(Android monkey) 壓力測試:pressure test Android monkey: Android monkey是Android中用來進行smoke測試的一個工具,模擬一只猴子在胡亂點擊Android手機,使用方法: cmd--> adb shell -->monkey [次數] 【前提是配置了../sdk/platform-tools/的環境變量】
配置jUnit環境:
1.編寫測試類繼承AndroidTestCase類,編寫測試方法的時候要將異常拋出來。
public class TestArithmeticService extends AndroidTestCase {

           /**
           * 將add方法測試代碼,需要將異常拋出去
           *
           * @throws Exception
           */
           public void testAdd() throws Exception {
                   ArithmeticService service = new ArithmeticService();
                    int retsult = service.add(5, 15);
                    assertEquals(22, retsult);
          }
}
2.配置AndroidManifest.xml文件


 



AndroidManifest.xml文件:

< manifest xmlns:android ="http://schemas.android.com/apk/res/android"
    package ="com.meritit.dm.junittest"
    android:versionCode ="1"
    android:versionName ="1.0" >

    
    
    
    
    
        
        < uses-library android:name ="android.test.runner" />
        < activity
            android:name ="com.meritit.dm.junittest.MainActivity"
            android:label ="@string/app_name" >
            < intent-filter>
                < action android:name ="android.intent.action.MAIN" />
                < category android:name ="android.intent.category.LAUNCHER" />
            
        
    
另外:可以創建Android Test Project,以上配置會自動生成。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved