`
CJxixi
  • 浏览: 106695 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Andriod 自动化测试—InstrumentationTestCase

 
阅读更多

Andriod 自动化测试—InstrumentationTestCase:

 

1,新建一个andriod project:

 

2,编写MainActivity代码,如:

 

package cj.andriodtest.com;

import android.app.Activity;
import android.os.Bundle;

import android.view.View;

import android.widget.Button;
import android.widget.TextView;

public class App extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        final TextView myText = (TextView) findViewById(R.id.text1);

        Button button = (Button) findViewById(R.id.button1);
        button.setOnClickListener(new Button.OnClickListener() {
        @Override
        public void onClick(View arg0) {
        	   myText.setText("Hello Android");
       	   }});
      }        	  
     public int add(int i, int j)
     {
        return (i + j);
      }
        
}
 

3,编写测试代码,如:

 

package cj.andriodtest.test;

import cj.andriodtest.com.App;
import android.content.Intent;
import android.os.SystemClock;
import android.test.InstrumentationTestCase;
import android.util.Log;
import android.widget.Button;
import android.widget.TextView;

public class SampleTest extends InstrumentationTestCase {
	
	
	private App app = null;
	private Button button = null;
	private TextView text = null;

	/*
	 * 初始设置,该方法第一个被调用,完成初始化工作
	 */
	@Override
	protected void setUp() {
		try {
			
			super.setUp();
		
		} catch (Exception e) {
			e.printStackTrace();
		}
		Intent intent = new Intent();
		//System.out.println("---------------------------------------------------");
		intent.setClassName("cj.andriodtest.com", App.class.getName());
		System.out.println("99999999999999999");
		intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
		//获取被测对象context
		app = (App) getInstrumentation().startActivitySync(intent);
		//System.out.println("Apppppppppp:  "+app);
		//获取被测试的程序的资源要加包名,不然无法获取
		text = (TextView) app.findViewById(cj.andriodtest.com.R.id.text1);
		//System.out.println("textttttttt:  "+text);
		//获取被测试的程序的资源要加包名,不然无法获取
		button = (Button)app.findViewById(cj.andriodtest.com.R.id.button1);;
		
		
	}

	/*
	 * 垃圾清理与资源回收 ,测试用例完成时调用
	 * 
	 */
	@Override
	protected void tearDown() {
		app.finish();
		try {
			super.tearDown();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	/*
	 * 活动功能测试
	 */
	public void testActivity() throws Exception {
		Log.v("testActivity", "test the Activity");
		SystemClock.sleep(1500);
		//getInstrumentation().runOnMainSync(new PerformClick(button));		
		getInstrumentation().runOnMainSync(new PerformClick(button));
		SystemClock.sleep(3000);
		assertEquals("Hello Android", text.getText().toString());
	}

	/*
	 *模拟按钮点击的接口
	 */
	private class PerformClick implements Runnable {
		Button btn;

		public PerformClick(Button button) {
			btn = button;
		}
		public void run() {
			
			btn.performClick();
		}
	}

	/*
	 * 测试类中的方法 
	 */
	public void testAdd() throws Exception {
		String tag = "testAdd";
		Log.v(tag, "test the method");
		int test = app.add(1, 1);
		assertEquals(2, test);
	}
}

 

4,配置AndriodManifest.xml文件,将测试代码与被测试程序关联:

 

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="cj.andriodtest.com"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
    <!--需要加载测试扩展包-->
    	<uses-library android:name="android.test.runner" />
        <activity android:name=".App"
                  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>
    <uses-sdk android:minSdkVersion="8" />
        <!--加载被测主程序包名-->
    <instrumentation android:targetPackage="cj.andriodtest.com" android:name="android.test.InstrumentationTestRunner" />
</manifest> 

 5,运行测试程序,运行测试程序有2种方式:

 

1> 在andriodproject 上右击,run as Andriod JUnit Test,直接运行测试用例

 

 

2>在模拟器上,运行测试用例。在模拟器中选择dev tools->“andriod.test.InstrumentationTestRunner”

来运行测试用例。这种很好,可以不需要pc运行测试用例。

注意:dev tools 真机上可以没有,需要安装

 

 

分享到:
评论

相关推荐

    Android自动化测试之Instrument深入研究.pdf

    总结来说,Android的Instrumentation测试框架是Android自动化测试的核心,它提供了强大的控制和监视能力,涵盖了从基本的单元测试到复杂的UI测试的各个方面。理解并熟练运用Instrumentation,可以帮助开发者编写出...

    Android-节省时间并在Android上清除您的单元测试

    总的来说,有效地进行Android单元测试需要理解各种测试工具和框架,合理组织测试代码,使用模拟和隔离技术,以及利用自动化测试和CI流程。通过这些实践,开发者可以节省大量时间,提高代码质量和应用稳定性。

    CMDN CLUB # 17期:Android开发的单元测试

    单元测试是一种软件工程中的自动化测试方法,其目的是验证软件模块(通常是单一功能)是否按照预期工作。对于Android开发而言,单元测试尤为重要,因为它可以帮助开发者确保代码质量,提高开发效率,以及降低后期...

    Robotium环境搭建和初识

    Robotium的这些特性使其成为Android自动化测试的有力工具,特别适合用于功能测试、黑盒测试和系统测试。它的简单易用和强大的功能,使得Android应用开发人员和测试人员能够快速地构建和运行自动化测试用例,提高测试...

    主动发送事件android.pdf

    总的来说,Android的测试环境提供了一个全面而强大的工具集,不仅支持单元测试,还支持更复杂的集成测试和UI自动化测试。通过熟练掌握这些测试API和Instrumentation框架,开发者可以有效地验证应用程序的功能,提高...

    安卓测试工具

    Robotium是一款强大的自动化测试框架,专为Android应用程序设计,它提供了丰富的功能来编写高强度的黑盒测试。Robotium使得测试人员能够编写跨越多个Activity的测试用例,甚至可以对系统级应用进行测试,大大提升了...

    Test_Framework_training.pdf

    Android Test Framework是Android系统提供的官方测试框架,用于自动化测试Android应用程序。该框架基于JUnit3,并集成到了Android平台中。它支持三种类型的测试结果:通过(Pass)、失败(Fail)和错误(Error),其中错误...

    Robotium简单使用教程

    Robotium 是针对 Android 应用程序自动化测试的工具,它以简洁和强大的特性著称。Robotium 基于 Android 的 InstrumentationTestCase2 进行了二次封装,提供了一个名为 Solo 的类,使得测试编写变得更加简单。Solo ...

    android之仪表盘实现源码.zip

    对自定义View进行单元测试,确保在各种输入条件下表现正确,可以使用`InstrumentationTestCase`或`Espresso`等测试框架。 10. **代码结构**: 好的代码组织方式可以提高代码可读性和维护性。可以将自定义View的...

Global site tag (gtag.js) - Google Analytics