博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android下的junit 单元测试
阅读量:6438 次
发布时间:2019-06-23

本文共 1180 字,大约阅读时间需要 3 分钟。

 在 AndroidManifest.xml  中加上以下文件   public class UserTestCase extends AndroidTestCase 继承 AndroidTestCase
<instrumentation
:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.example.usersqllite" />
<uses-library android:name="android.test.runner" />
  文件如下
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.usersqllite"
android:versionCode="1"
android:versionName="1.0" >
<instrumentation
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="com.example.usersqllite" />
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="18" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<uses-library android:name="android.test.runner" />
<activity
android:name="com.example.usersqllite.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>
</manifest>
最新内容请见作者的GitHub页:http://qaseven.github.io/

转载地址:http://hcuwo.baihongyu.com/

你可能感兴趣的文章
Python序列类型
查看>>
再谈ThinkPHP
查看>>
Hibernate问题浅析
查看>>
出现访问apache资源直接下载php文件的解决办法-----yum 安装 php mysql
查看>>
七种Mysql表类型
查看>>
归并与归并排序
查看>>
linux和windows互传文件、用户配置文件和密码配置文件、用户组管理、用户管理...
查看>>
spark 应用程序性能优化经验
查看>>
基于Zabbix IPMI监控服务器硬件状况
查看>>
Go语言之并发资源竞争
查看>>
GNS帧中继配置,帧中继环境搭建
查看>>
MySql 数据同步
查看>>
awk学习笔记(9) - 表达式
查看>>
版本号大小比较算法
查看>>
在linux日常工作中touch的用法
查看>>
linux
查看>>
SELF4j没什么具体大的报错异常
查看>>
Linux中grub使用技巧
查看>>
win7关闭UAC的方法
查看>>
8-Shell的整数表达式介绍-实践及企业案例脚本剖析
查看>>