美文网首页
3、单元测试

3、单元测试

作者: Jarvis_zhu | 来源:发表于2017-12-19 01:10 被阅读0次

在Android中添加单元测试

直接新建一个类去继承AndroidTestCase,并且在清单文件里面添加两个权限:

<!-- 注意包名要和测试类所在的包相同 -->
<instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="com.example.unit"></instrumentation>

<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <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里面添加这一个属性 -->
        <uses-library android:name="android.test.runner" />
    </application>

单元测试的步骤

  1. 定义一个类就AndroidTestCase
  2. 在清单文件中配置 uses-library 和 instrumentation
  3. 可以去创建一个测试工程进行测试

这是一个小技巧

相关文章

网友评论

      本文标题:3、单元测试

      本文链接:https://www.haomeiwen.com/subject/dusvwxtx.html