標籤:
在實際開發中,開發android軟體的過程需要不斷地進行測試。而使用Junit測試架構,側是正規Android開發的必用技術,在Junit中可以得到組件,可以類比發送事件和檢測程式處理的正確性..........
第一步:首先在AndroidManifest.xml中加入下面代碼:
<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" package="hb.learn.junit" android:versionCode="1" android:versionName="1.0"> <uses-sdk android:minSdkVersion="8" /> <application android:icon="@drawable/icon" android:label="@string/app_name"> <!-- 在本應用中匯入需要使用的包,放在application裡面activity外面 --> <uses-library android:name="android.test.runner" /> <activity android:name=".JunitTestActivity" 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> <!-- 記住這個一要放在application外面,不然會出現配置錯誤 資訊 --> <instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="hb.learn.junit" android:label="Tests for My App" /></manifest>
上面targetPackage指定的包要和應用的package相同。就是這個測試類別所在的包名;
第二步:編寫單元測試代碼(選擇要測試的方法,右鍵點擊“Run As”--“Android Junit Test” ):
import android.test.AndroidTestCase;import android.util.Log;public class XMLTest extends AndroidTestCase { public void testSomething() throws Throwable { Assert.assertTrue(1 + 1 == 3); }}
錯誤提示說明
在運行測試例子的過程中,也會遇到了不少的錯誤提示,總結如下:
單擊“Android JUnit Test”運行後,出現“Android Launch”錯誤提示,如下
同時,在程式的console面板中會輸出如下資訊:
ERROR: Application does not specify a android.test.InstrumentationTestRunnerinstrumentation or does not declare uses-library android.test.runner。
出現錯誤的原因可能是:AndroidManifest.xml配置錯誤。那麼在AndroidManifest.xml到底需要配置哪些內容呢,下面一一為大家說明:
1、在<application>增加引用android.test.runner的聲明
<!-- 在本應用中匯入需要使用的包,放在application裡面activity外面 --> <uses-library android:name="android.test.runner" />
2、然後在<manifest>中增加instrumentation的資訊說明
<!-- 記住這個一要放在application外面,不然會出現配置錯誤 資訊 --> <instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="hb.learn.junit" android:label="Tests for My App" />
根據自己的程式,在AndroidManifest.xml檔案中配置上面的資訊。如果上面的資訊配置正確,滑鼠右鍵單擊工程,選擇Run As\Run configurations,在Android JUnit Test選項中選擇工程,將會看到下面這個介面:
在Instrumentation runner後的列表框選項中,我們看到android.test.InstrmentationTestRunner,並處於當前選擇狀態。如果這個沒 有選擇框中沒有任何選項,就說明AndroidManifest.xml配置有問題。
Android:單元測試Junit的配置