您好,登錄后才能下訂單哦!
1、在進行單元測試前首先必須AndroidManifest.xml中進行配置:
(1)<!-- 在根節點 manifest節點下放置 指令集 instrumentation -->
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:label="Tests for My App"
android:targetPackage="com.xunfang.junit" />
上面這些代表單元測試的框架的啟動裝置,啟動裝置有好幾類,默認使用上面的這種。
targetPackage與上面的package相同,為的是使單元測試和當前應用處于同一進程中
(2)<!-- 使用的函數庫 application節點的下面-->
<uses-library android:name="android.test.runner" />
代表單元測試的函數庫
附上代碼:
AndroidManifest.xml中的配置:
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="16" />
<!-- 配置在manifest中 -->
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.xunfang.junit" >
</instrumentation>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<!-- 配置在application標簽中 -->
<uses-library android:name="android.test.runner"/>
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
上面兩段有背景色的是配置全局文件中的配置
業務邏輯中的代碼:
public class MyMath {
public int add(int a, int b ){
return a + b;
}
}
單元測試代碼:
public class MyJuniteTestCase extends AndroidTestCase {
public void test(){
MyMath my = new MyMath() ;
assertEquals(10, my.add(4, 6)) ;
}
}
測試步驟:
(1) 項目--》右鍵--》Run As--》Android Jutil Test
(2)打開單元測試代碼--》在outLine中選擇你要測試的方法--》右鍵--》Run As--》Android Jutil Test
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。