android单元测试举例
- 编写测试类继承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.
相关推荐
88570191 2011-08-22
zjwijy 2012-02-05
qingmumu 2011-11-18
CampC 2015-12-23
86133550 2015-12-23
lxguru 2015-12-08
wuzhixiu00 2012-12-27
86133550 2012-07-27
Wicrecend 2012-06-14
leeo00 2012-04-07
wuzhixiu00 2011-03-09
xiaoshengyige 2011-03-08
XPY 2010-10-29
CampC 2010-04-26