1.測試類須要繼承AndroidTestCaseandroid
2.添加相關測試配置文件app
AndroidManifest.xml文件中:函數
1 <?xml version="1.0" encoding="utf-8"?> 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.example.junit" 4 android:versionCode="1" 5 android:versionName="1.0" > 6 7 <!-- 指令集須要在manifest的節點下 --> 8 9 <instrumentation 10 android:name="android.test.InstrumentationTestRunner" 11 android:label="Test My app" 12 android:targetPackage="com.example.junit" > 13 </instrumentation> 14 15 <uses-sdk 16 android:minSdkVersion="8" 17 android:targetSdkVersion="19" /> 18 19 <application 20 android:allowBackup="true" 21 android:icon="@drawable/ic_launcher" 22 android:label="@string/app_name" 23 android:theme="@style/AppTheme" > 24 <!-- 在application節點下,使用的函數庫 --> 25 <uses-library android:name="android.test.runner"/> 26 <activity 27 android:name="com.example.junit.MainActivity" 28 android:label="@string/app_name" > 29 <intent-filter> 30 <action android:name="android.intent.action.MAIN" /> 31 32 <category android:name="android.intent.category.LAUNCHER" /> 33 </intent-filter> 34 </activity> 35 </application> 36 37 </manifest>
而後運行測試方法,若是是綠色條,說明測試的結果爲正確。紅色表示測試出現問題。測試
1 package com.example.test; 2 3 import com.example.service.Calcservice; 4 5 import android.test.AndroidTestCase; 6 7 public class TestAndroidService extends AndroidTestCase { 8 //測試拋出異常 9 public void testAdd() throws Exception{ 10 Calcservice calcservice = new Calcservice(); 11 int result=calcservice.add(3,5); 12 assertEquals(8, result); 13 } 14 }
2 也能夠用file 新建一個androidtest項目,將須要測試的工程添加進去。spa