android单元测试举例 博客分类: android android单元测试
程序员文章站
2024-02-15 08:29:34
...
- 编写测试类继承AndroidTestCase,并且把这个类独立放在test包底下。一般情况下,在这个类里面写方法,测试你的工具类的方法,给出输入得到输出,以Log的形式展现出来。
- 在AndroidManifest.xml加入单元测试配置。具体地,先在Application标签中加入
<uses-library android:name="android.test.runner"/>
再在Application标签外加入instrumentation标签<instrumentation android:targetPackage="com.phoobobo.robot" android:label="this is a test" android:name="android.test.InstrumentationTestRunner"> </instrumentation>
包名和label请设置为自己的包名和自己命名label。 - 运行测试。如果是用Eclipse就右键项目名,选择Run As Android JUnit Test.
推荐阅读
-
android单元测试举例 博客分类: android android单元测试
-
androidpn(安卓信息推送工具) 博客分类: 移动开发 android
-
SQLite外键(Foreign Key)支持 博客分类: android SQLiteSinatraUbuntuDebianSQL
-
Google Map Android API V1中API Key的生成 博客分类: Android androidMapViewapiKeygoogle map
-
google地图demo 博客分类: FY_Android androidgooglegoogle map地图
-
如何在没有内置Google Map APIs的Android手机上安装程序 博客分类: Android AndroidGoogle Map
-
Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY 博客分类: Android androidgoogle map
-
Android学习笔记 博客分类: 移动开发 android
-
Android 快捷键 博客分类: 移动开发 android
-
androidpn(安卓信息推送工具) 博客分类: 移动开发 android