欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

android单元测试举例 博客分类: android android单元测试 

程序员文章站 2024-02-15 08:29:34
...
  1. 编写测试类继承AndroidTestCase,并且把这个类独立放在test包底下。一般情况下,在这个类里面写方法,测试你的工具类的方法,给出输入得到输出,以Log的形式展现出来。
  2. 在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。
  3. 运行测试。如果是用Eclipse就右键项目名,选择Run As Android JUnit Test.