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

Android review Android中的测试

时间:2014-07-10 22:59:54      阅读:331      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   java   color   


Android中的测试无非是分为两种:

一、在一个工程里面写测试代码。

二、专门新建一个工程写测试代码。


一、在一个工程里面写测试代码

步骤:

1、写一个类继承AndroidTestCase

如:

package com.example.junittest;

import junit.framework.Assert;
import android.test.AndroidTestCase;

public class MyTest extends AndroidTestCase {
	
	public void testDevide(){
		Service service = new Service();
		System.out.println(service.devide(10, 2));
		
		
		/**
		 * Assert.assertEquals(expected, actual);
		 * 功能:断言。
		 * expected: 期望值
		 * actual: 实际值
		 */
		Assert.assertEquals(5, service.devide(10, 2));
	}
	
	public void testDevide1(){
		Service service = new Service();
		System.out.println(service.devide(10, 2));
	}
	
}


2、在AndroidManifest.xml中配置上以下两段代码。

<instrumentation
        android:name="android.test.InstrumentationTestRunner"
        android:targetPackage="com.njupt.sqlit" />

<uses-library android:name="android.test.runner" />


如:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.junittest"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <instrumentation
        android:name="android.test.InstrumentationTestRunner"
        android:targetPackage="com.example.junittest" />
    
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        
        <uses-library android:name="android.test.runner" />
        
        <activity
            android:name="com.example.junittest.MainActivity"
            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>

</manifest>

解析:<insrtumentation/>中的targetPackage指定的是需要测试的应用的报名.也就是说也<manifest/>节点中package

标签所指定的内容保持一致。


需要注意的是:

1、右击测试类-----》“run as Android JUNIT Test”,这时候这个测试类的所有测试方法一块运行。

2、右击测试方法-----》“run as Android JUNIT Test”。这个时候只运行某一个测试方法。


二、专门新建一个测试工程



方法:

ctrl+n--------->>这时候你会看到以下界面:

bubuko.com,布布扣

然后选择Android Test Project-----》

bubuko.com,布布扣

在这里输入Android 测试工程的名称。。。-------------》

bubuko.com,布布扣

在这里选择被测试的工程。。---------------------------------------》

接下来不断的点击next即可。。。。。


2、与在一个工程里面写测试代码的差别。

1)新建的测试工程中没有MainActivity

2)AndroidManifest.xml中已经自带了<instrument/>等标签

3)这是需要把测试工程与北侧是工程都发到手机上




源码下载:

http://download.csdn.net/detail/caihongshijie6/7612085
















Android review Android中的测试,布布扣,bubuko.com

Android review Android中的测试

标签:android   style   blog   http   java   color   

原文地址:http://blog.csdn.net/hjd_love_zzt/article/details/37599657

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