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

Android编程之单元测试实例分析

程序员文章站 2023-12-05 15:21:46
本文实例讲述了android编程之单元测试用法。分享给大家供大家参考,具体如下: 在实际开发中,开发android软件的过程需要不断地进行测试。使用junint测试框架,...

本文实例讲述了android编程之单元测试用法。分享给大家供大家参考,具体如下:

在实际开发中,开发android软件的过程需要不断地进行测试。使用junint测试框架,是正规android开发的必用技术,在junint中可以得到组件,可以模拟发送事件和检测程序处理的正确性。单元测试是嵌入到项目中;也可以作为一个单独的项目争对某个具体项目进行测试。

第一步:首先在androidmanifest.xml中加入下面红色代码:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.lee0000.test" android:versioncode="1" android:versionname="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
    <uses-library android:name="android.test.runner"/>
</application>
<use-sdk android:minsdkversion="6"/>
<instrumentation android:name="android.test.instrumentationtestrunner" android:targetpackage="com.lee0000.test" android:label="tests"/> 
 ***上面targetpackage指定的包要和应用的package相同。

第二步:编写单元测试代码,一般对将要测试的方法命名testxxx。需要测试的时候选择大纲(outline视图)选择测试的方法右键点击,选择"run as" - "android junit test"。

例:

项目结构:

Android编程之单元测试实例分析

androidmanifest.xml文件:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.lee0000.test"
 android:versioncode="1"
 android:versionname="1.0" >
 <uses-sdk android:minsdkversion="15" />
 <application
  android:icon="@drawable/ic_launcher"
  android:label="@string/app_name" >
  <activity
   android:name=".juinttestactivity"
   android:label="@string/app_name" >
   <intent-filter>
    <action android:name="android.intent.action.main" />
    <category android:name="android.intent.category.launcher" />
   </intent-filter>
  </activity>
 <uses-library android:name="android.test.runner" />  
 </application>
 <instrumentation 
  android:name="android.test.instrumentationtestrunner"
  android:targetpackage="com.lee0000.test" android:label="tests"/> 
</manifest> 

定义测试的两个方法:

public class testclass {
 public void str(string s){
  system.out.println(s.substring(6));
 }
 public int add(int a,int b){
  return a+b;
 }
} 

一般继承的是androidtestcase,测试的时候就是测试这两个方法,如果在对应方法中选择"run as" - "android junit test"时出错,可以右键test类,选择"run as" - "run configurations",在 instrumentation runner中选择:

import junit.framework.assert;
import android.test.androidtestcase;
public class test extends androidtestcase{
 public void teststr() throws exception{
  testclass tc = new testclass();
  tc.str("null");
 }
 public void testadd(){
  testclass tc = new testclass();
  int t = tc.add(1, 2);
  assert.assertequals(3, t);
 }
} 

希望本文所述对大家android程序设计有所帮助。