Android 中如何进行单元测试

  1. 在 AndroidManifest.xml 的 <application></application>标签中加入如下语句:

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

  2. 在 AndroidManifest.xml 的 <manifest></manifest>标签中加入如下语句:

    <instrumentation 

       android:name="android.test.InstrumentationTestRunner"

       android:targetPackage="com.example.log"

       android:label="Tests for My App"

       />

  3. 在src文件夹中创建 TestCase 必须继承 AndroidTestCase

你可能感兴趣的:(Android 中如何进行单元测试)