服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android学习笔记之应用单元测试实例分析

Android学习笔记之应用单元测试实例分析

2021-04-13 15:50段残梦 Android

这篇文章主要介绍了Android学习笔记之应用单元测试,结合实例形式较为详细的分析了Android单元测试的实现原理与具体步骤,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了android学习笔记之应用单元测试。分享给大家供大家参考,具体如下:

第一步:在androidmanifest.xml中加入如下两段代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.pccw"
  android:versioncode="1"
  android:versionname="1.0">
 <uses-sdk android:minsdkversion="8" />
 <application android:icon="@drawable/icon" android:label="@string/app_name">
  <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>
  <!—添加代码1-->
  <uses-library android:name="android.test.runner"/>
</application>
 <!—添加代码2-->
  <instrumentation android:name="android.test.instrumentationtestrunner"
   android:targetpackage="com.pccw" android:label="aaa"/>
</manifest>

1. <uses-library android:name="android.test.runner"/>代表把单元测试框架中的一些依赖库引入进来

2. <instrumentation android:name="android.test.instrumentationtestrunner"android:targetpackage="com.pccw" android:label="aaa"/>代表配置单元测试框架的启动装置,启动装置有好几个类,可以选择,一般情况下我们使用上面这个。

3. targetpackage与上面的package相同,代表单元测试框架和当前应用是处于同一个进程中

第二步:编写业务逻辑,即需要被测试的模块

?
1
2
3
4
5
6
7
8
public class personservice {
 public void save(string name){
  string sub = name.substring(6);
 }
 public int add(int a, int b){
  return a+b;
 }
}

第三步:编写单元测试代码

?
1
2
3
4
5
6
7
8
9
10
11
public class personservicetest extends androidtestcase {
 public void testsave() throws exception {
  personservice service = new personservice();
  service.save(null);
 }
 public void testadd() throws exception {
  personservice service = new personservice();
  int result = service.add(1, 2);
  assert.assertequals(3, result);
 }
}

第四步:打开eclipse中的outline窗口,其中会显示单元测试类的所有的方法

Android学习笔记之应用单元测试实例分析

然后想要测试哪个方法,则在哪个测试方法上右键鼠标,选择run as,然后再选择android junit test即可,如果有异常或者错误,则会出现如下情况:

Android学习笔记之应用单元测试实例分析

如果是正常的,则会如下:

Android学习笔记之应用单元测试实例分析

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

延伸 · 阅读

精彩推荐