相逢意气为君饮,系马高楼垂柳边。这篇文章主要讲述Android单元测试Junit的配置相关的知识,希望能为你提供帮助。
要进行Android的单元测试首先的配置指令集和用户库,下面是详细的配置步骤
@1:指令集配置(instrumentation)
1.1 打开androidManifest.xml文件,点击instrumentation选项
文章图片
点选ADD后
文章图片
点instrumentation选项,指令集就添加成功
文章图片
name必须指定为android.test.InstrumentationTestRunner
Target Package为单元测试的包名
Lable随便指定
这样instrumentation就添加成功
@2 添加uses-library
文章图片
【Android单元测试Junit的配置】
文章图片
文章图片
鼠标右键单击工程,选择Run As\Run configurations,在Android JUnit Test选项中选择工程,将会看到下面这个界面:
文章图片
在Instrumentation runner后的列表框选项中,选中android.test.InstrmentationTestRunner。到此配置完毕
配置完成后清单文件如下:
[html] view plain copy
文章图片
文章图片
- < ?xml version="1.0" encoding="utf-8"?>
- < manifest package="com.ink.juint"
- android:versionCode="1"
- android:versionName="1.0" xmlns:android="http://schemas.android.com/apk/res/android">
- < uses-sdk
- android:minSdkVersion="8"
- android:targetSdkVersion="8" />
- < instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="com.ink.juint" android:label="suibian"> < /instrumentation>
- < application
- android:allowBackup="true"
- android:icon="@drawable/ic_launcher"
- android:label="@string/app_name"
- android:theme="@style/AppTheme" >
- < activity
- android:name="com.ink.junit.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>
- < uses-library android:name="android.test.runner"/>
- < /application>
- < /manifest>
推荐阅读
- Android异常分析(转)
- Android防止Service被杀死
- 开发 Material Design+RxJava+Retrofit+MVP App 参考资料
- iMX6开发板烧写Android系统
- Android自动化测试怎么填写Xpath
- IDEA基于kotlin开发android程序配置小结
- Android后台执行的定时器实现
- 微信开放平台手机APP支付
- 安卓开源项目周报0419