码迷,mamicode.com
首页 > 移动开发 > 详细

Android test---robotium----简单例子

时间:2015-09-04 07:32:56      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

1.首先新建一个要被测试的工程,命名为”robotium“;一个很简单的Android 应用程序;主页面只有个 TextView 控件;

2. 在建一个用于测试的工程 ,命名为”robotiumTestCase" ;检查被测apk的页面是否有某个字 如“hello ” “world” 等;

2.1 选择file-》new--》project----》Android test project

2.2 输入测试工程的名字 robotiumTestCase

2.3 选择被测试的项目 “robotium”  然后点击finish 完成测试项目的创建;

2.4 新建一个用于测试的测试用例 。在刚刚新建的工程 右键 选择---new ---->class ------》finish

如图技术分享

3. 导入robotium ;

3.1 将下载的 robotium-solo-xxx.jar 保存到测试工程的根目录下的libs 中,如果没有可以新创建一个libs 文件夹;如图

技术分享

 

3.2  把robotium-solo-xxx.jar 加入到测试工程的引用路径中来;右键测试工程----选择----》build path----》configure build;

3.3 在弹出Java build path 的对话框中选择 libraries 的那个tab选项------》点击 add external JARS。。。那个按钮 添加刚刚在步骤3.1 中的保存的robotium-solo-xxx.jar

3.4 同样的在Java build path 的对话框中选择 orderand  export的那个tab选项----》选择robotium-solo-xxx.jar 并且让其置顶;

具体如图中步骤技术分享

4.添加了开原库 robotium-solo-xxx.jar ,接下来就是编写测试用例了,检查一下主页面是否有某个字;

代码如下:

package com.example.robotium.test;

import com.robotium.solo.Solo;
import android.test.ActivityInstrumentationTestCase2; 

public class test extends ActivityInstrumentationTestCase2 {
    private Solo solo; 
    public test()  throws Exception {
        super(Class.forName("com.example.robotium.MainActivity"));
        // TODO Auto-generated constructor stub
    }
     @Override  
     protected  void setUp()  throws Exception {  
        solo =  new Solo(getInstrumentation(),getActivity());  
    }  
  
     @Override  
     protected  void tearDown()  throws Exception {  
        solo.finishOpenedActivities();  
    }  
     
     public void test测试用例() throws Exception{
         boolean expected =true;

         boolean actual =solo.searchText("debbie")&&solo.searchText("xie");

          assertEquals("debbie is are not found", expected, actual);
     }
    
}

5. 最后就是运行我们的测试工程了。右键测试工程,选择run as -----> andriod junit test .执行完成后,将看到一个测试结果;

看到的结果是错误的 ;因为被测试的apk 只有hello world 这些字 而没有“Debbie” or “xie"

如图:

 

技术分享

 

Android test---robotium----简单例子

标签:

原文地址:http://www.cnblogs.com/xieyier/p/4781119.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!