当前位置: 首页 > 编程笔记 >

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

骆英纵
2023-03-14
本文向大家介绍Android编程之单元测试实例分析,包括了Android编程之单元测试实例分析的使用技巧和注意事项,需要的朋友参考一下

本文实例讲述了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"。

例:

项目结构:

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程序设计有所帮助。

 类似资料:
  • 本文向大家介绍java编程之单元测试(Junit)实例分析(附实例源码),包括了java编程之单元测试(Junit)实例分析(附实例源码)的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了java编程之单元测试。分享给大家供大家参考,具体如下: 完整实例代码代码点击此处本站下载。 在有些时候,我们需要对我们自己编写的代码进行单元测试(好处是,减少后期维护的精力和费用),这是一些最基本的模块测

  • 本文向大家介绍Android编程之蓝牙测试实例,包括了Android编程之蓝牙测试实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android编程之蓝牙测试。分享给大家供大家参考。具体分析如下: 一、软件平台: win7 + eclipse + sdk 二、设计思路: 配合倒计时定时器实现蓝牙打开,可见,扫描三个功能 三、源代码: main.xml: test_bluetooth.j

  • 本文向大家介绍Android编程单元测试实例详解(附源码),包括了Android编程单元测试实例详解(附源码)的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android编程单元测试。分享给大家供大家参考,具体如下: 完整实例代码代码点击此处本站下载。 本文是在上一篇文章《java编程之单元测试(Junit)实例分析》的基础上继续讲解android的单元测试,android源码中引入了j

  • 本文向大家介绍Python之PyUnit单元测试实例,包括了Python之PyUnit单元测试实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Python之PyUnit单元测试,与erlang eunit单元测试很像,分享给大家供大家参考。具体方法如下: 1.widget.py文件如下: 2. auto.py文件如下: 3.执行结果如下: [code]jobin@jobin-deskt

  • 本文向大家介绍Android编程之页面切换测试实例,包括了Android编程之页面切换测试实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android编程之页面切换测试。分享给大家供大家参考。具体分析如下: 一、软件平台: win7 + eclipse + sdk 二、设计思路: 两个页面:mian和ok,每个页面上有一个按键,点击则可以互相切换 三、源代码: main.xml源代码

  • 本文向大家介绍Android编程之消息机制实例分析,包括了Android编程之消息机制实例分析的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android编程之消息机制。分享给大家供大家参考,具体如下: 一、角色描述 1.Looper: 一个线程可以产生一个Looper对象,由它来管理此线程里的Message Queue(消息队列)。 2.Handler: 你可以构造Handler对象来