Android单元测试的步骤

时间:2022-12-31 05:05:15

Step1:向AndroidManifest.xml文件添加以下标签元素

<uses-library android:name="android.test.runner" />


位于<application>元素体内

<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="测试类包名" android:label="Tests for My App" />


与<application>元素并列

Step2:新建单元测试类,必须继承AndroidTestCase,此外测试类中的测试方法需要以"test"+"待测试方法的名称"(比如testSendData测试的就是sendData方法)

Step3:方法要throws Throwable异常,Throwable是Exception的父类,单元测试框架捕获Throwable。

Step4:调用测试,在Outline面板或方法名上右键—Run AS—Android Junit Test。

Step5:查看打印信息,可以事先使用Log类中的方法来打印信息(用法参见Log图文详解(Log.v,Log.d,Log.i,Log.w,Log.e)的用法),打开 LogCat面板,在这个面板中我们可以看到Android输出的所有信息。