Android 项目添加单元测试

Android 单元测试

修改配置文件:AndroidManifest.xml

1.在<application> 中添加 引入单元测试包

		<uses-library android:name="android.test.runner"/>
 	 2.在<manifest>中添加测试
		<instrumentation android:name="android.test.InstrumentationTestRunner" 
		android:targetPackage="com.yueking.callocation"/>
	配置文件 整体像这样:
		
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.yueking.callocatioin"
          android:versionCode="1"
          android:versionName="1.0">
    <uses-sdk android:minSdkVersion="15"/>
    <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
        <activity android:name="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>
       <span style="color:#ff0000;"> </span><span style="background-color: rgb(255, 0, 0);"><uses-library android:name="android.test.runner"/></span>
    </application>
    <span style="background-color: rgb(255, 0, 0);"><instrumentation android:name="android.test.InstrumentationTestRunner"
                     android:targetPackage="com.yueking.callocatioin"/></span>
</manifest>
3.最后编写测试用类,并 继承至 android.test.AndroidTestCase即可
		测试中打印日志 用 Log.i(String,String) 方法
	实例代码:
<pre name="code" class="java">package com.yueking.callocatioin.service;

import android.test.AndroidTestCase;
import android.test.AndroidTestRunner;
import android.util.Log;

public class PersonServiceTest extends AndroidTestCase {
    static String tag = "yueking";

    public void setUp() throws Exception {

    }


    public void testGetLocation() throws Exception {
         Log.i(tag, "hello yueking");
    }
}


 
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值