Android编写测试数据库类时对AndroidMainfest文件进行配置

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.szy.sqlite.activity"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="8" />

    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <uses-library android:name="android.test.runner"/>
        <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>
 <instrumentation android:name="android.test.InstrumentationTestRunner"
      android:targetPackage="com.szy.sqlite.activity"//此包名必须以上绿色字体一样
      android:label="Test My App"
      />
</manifest>

原文地址:https://www.cnblogs.com/jita/p/2236722.html