Android单元测试/Ui测试+JaCoCo覆盖率统计

2024-05-08 22:32

本文主要是介绍Android单元测试/Ui测试+JaCoCo覆盖率统计,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Android单元测试/Ui测试+JaCoCo覆盖率统计

背景说明

  • 单元测试
    从源代码着手,对源码中的最小可测试单元进行检查和验证,在对源代码有较深的理解下,编写测试单元,工作量大,不管从编写单元测试用例再到用例的维护上,成本都会比较高,但是通过这种方式可靠性很强。

  • UI测试
    从UI层面着手,对UI操作进行检查和验证,可以不需要对代码有深层次的了解,成本相对较低,工作量相对也低一些,但是可靠性相比之下会弱一点。

  • 覆盖率的统计
    我们有了多种测试方式,那么问题来了,这些测试的性能怎么样,是不是所有的代码都被测试过了?这时候就需要加入覆盖率的统计了,如果一个工程的待测数量为M,测试用例的数量为N,那么代码覆盖率F则为:

    F=N/M

    本文将介绍一个代码覆盖率的工具JaCoCo,通过这个工具,我们可以知道哪些方法被测试了,哪些方法没有被测试到。

1. 先新建一个Android工程,大致的内容是有一个MainActivity,输入两个数,可以计算出二者相加、相乘的结果,并通过toast显示出计算结果。

  • app界面如下:

这里写图片描述


  • 源代码
    activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:id="@+id/activity_main"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"android:paddingBottom="@dimen/activity_vertical_margin"android:paddingLeft="@dimen/activity_horizontal_margin"android:paddingRight="@dimen/activity_horizontal_margin"android:paddingTop="@dimen/activity_vertical_margin"tools:context="com.learn.learnjacoco.MainActivity"><TextView
        android:layout_width="match_parent"android:layout_height="wrap_content"android:text="输入两个数:" /><RelativeLayout
        android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_margin="10dp"android:orientation="horizontal"><EditText
            android:hint="number A"android:id="@+id/edt_numA"android:layout_width="100dp"android:layout_height="wrap_content"android:layout_alignParentLeft="true"android:inputType="number" /><EditText
            android:hint="number B"android:id="@+id/edt_numB"android:layout_width="100dp"android:layout_height="wrap_content"android:layout_alignParentRight="true"android:inputType="number" /></RelativeLayout><RelativeLayout
        android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_margin="10dp"><Button
            android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignParentLeft="true"android:onClick="add"android:text="add" /><Button
            android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_alignParentRight="true"android:onClick="plus"android:text="plus" /></RelativeLayout></LinearLayout>

MainActivity

package com.learn.learnjacoco;import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.text.TextUtils;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;public class MainActivity extends AppCompatActivity {public EditText edtNumA, edtNumB;int a, b;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);edtNumA = (EditText) findViewById(R.id.edt_numA);edtNumB = (EditText) findViewById(R.id.edt_numB);}public void add(View v) {if (getMyNum()) {String info = String.valueOf(MyUtils.add(a, b));Toast.makeText(this, "计算结果:" + info, Toast.LENGTH_SHORT).show();}else {Toast.makeText(this, "数字不合法", Toast.LENGTH_SHORT).show();}}public void plus(View v) {if (getMyNum()) {String info = String.valueOf(MyUtils.plus(a, b));Toast.makeText(this, "计算结果:" + info, Toast.LENGTH_SHORT).show();}else {Toast.makeText(this, "数字不合法", Toast.LENGTH_SHORT).show();}}public boolean getMyNum() {String aStr = edtNumA.getText().toString();String bStr = edtNumB.getText().toString();if (!TextUtils.isEmpty(aStr) && !TextUtils.isEmpty(bStr)) {a = Integer.parseInt(aStr);b = Integer.parseInt(bStr);return true;}return false;}
}

MyUtils

package com.learn.learnjacoco;public class MyUtils {public static int add(int a, int b) {return (a + b);}public static int plus(int a, int b) {return (a * b);}
}

以上完成了之后,先试运行一下,保证app能正常运行起来。

2. 编写单元测试

将视图切换到Android视图,如下:
这里写图片描述

可以看到com.learn.learnjacoco有三个,第一个存放工程的源码,后面两个放的是测试代码,分别为androidTest和test,这里顺带说明一下,androidTest一般存放的是和Android相关的测试,比如需要用到context等时候应该把测试放到该包下,而test对应的是Java相关的测试,也android无关的应该放到此包下。我们直接使用AndroidTest的包。

打开MyUtils.java,对着类名右键,Go to – Test – CreateNewTest – 把要测试的方法打上勾 – 选择存放在AndroidTest包下,如图:

这里写图片描述

补充MyUtilsTest的内容如下:

package com.learn.learnjacoco;import org.junit.Assert;
import org.junit.Test;public class MyUtilsTest {@Testpublic void add() throws Exception {Assert.assertEquals(3,MyUtils.add(1,2));}@Testpublic void plus() throws Exception {Assert.assertEquals(30,MyUtils.plus(10,3));}}

3. 编写UI测试

这里我们使用robotium编写UI测试用例(你也可以使用uiautomator去编写,效果是一样的),首先,我们需要配置gradle(app),添加robotium的依赖。

dependencies {...androidTestCompile 'com.jayway.android.robotium:robotium-solo:5.1'
}

接下来,在androidTest包下,我们创建一个MainActivity的测试类,内容如下:

package com.learn.learnjacoco;import android.test.ActivityInstrumentationTestCase2;import com.robotium.solo.Solo;import junit.framework.Assert;public class MainActivityTest extends ActivityInstrumentationTestCase2 {private Solo solo;private MainActivity mActivity;public MainActivityTest() {super(MainActivity.class);}@Overridepublic void setUp() throws Exception {super.setUp();solo = new Solo(getInstrumentation(), getActivity());mActivity = (MainActivity) getActivity();}@Overridepublic void tearDown() throws Exception {super.tearDown();}public void testInputA() throws Exception {solo.enterText(mActivity.edtNumA, "10");Assert.assertEquals("10", mActivity.edtNumA.getText().toString());}public void testInputB() throws Exception {solo.enterText(mActivity.edtNumB, "3");Assert.assertEquals("3", mActivity.edtNumB.getText().toString());}
}

4. 运行connectedAndroidTest

在Android Studio的右侧垂直栏中,有一个小的gradle图标,点开,如下图(如果没有内容,可以点击刷新):

这里写图片描述

运行完毕之后,进入到工程目录 $app\build\reports\androidTests\connected下,打开index.xml,这个文件中会存放这本次测试的结果,即使测试不通过,也会保留错误信息,如下图:

这里写图片描述

这篇关于Android单元测试/Ui测试+JaCoCo覆盖率统计的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/971617

相关文章

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

Android Kotlin 高阶函数详解及其在协程中的应用小结

《AndroidKotlin高阶函数详解及其在协程中的应用小结》高阶函数是Kotlin中的一个重要特性,它能够将函数作为一等公民(First-ClassCitizen),使得代码更加简洁、灵活和可... 目录1. 引言2. 什么是高阶函数?3. 高阶函数的基础用法3.1 传递函数作为参数3.2 Lambda

Android自定义Scrollbar的两种实现方式

《Android自定义Scrollbar的两种实现方式》本文介绍两种实现自定义滚动条的方法,分别通过ItemDecoration方案和独立View方案实现滚动条定制化,文章通过代码示例讲解的非常详细,... 目录方案一:ItemDecoration实现(推荐用于RecyclerView)实现原理完整代码实现

Android App安装列表获取方法(实践方案)

《AndroidApp安装列表获取方法(实践方案)》文章介绍了Android11及以上版本获取应用列表的方案调整,包括权限配置、白名单配置和action配置三种方式,并提供了相应的Java和Kotl... 目录前言实现方案         方案概述一、 androidManifest 三种配置方式

一文详解SQL Server如何跟踪自动统计信息更新

《一文详解SQLServer如何跟踪自动统计信息更新》SQLServer数据库中,我们都清楚统计信息对于优化器来说非常重要,所以本文就来和大家简单聊一聊SQLServer如何跟踪自动统计信息更新吧... SQL Server数据库中,我们都清楚统计信息对于优化器来说非常重要。一般情况下,我们会开启"自动更新

Android WebView无法加载H5页面的常见问题和解决方法

《AndroidWebView无法加载H5页面的常见问题和解决方法》AndroidWebView是一种视图组件,使得Android应用能够显示网页内容,它基于Chromium,具备现代浏览器的许多功... 目录1. WebView 简介2. 常见问题3. 网络权限设置4. 启用 JavaScript5. D

Android如何获取当前CPU频率和占用率

《Android如何获取当前CPU频率和占用率》最近在优化App的性能,需要获取当前CPU视频频率和占用率,所以本文小编就来和大家总结一下如何在Android中获取当前CPU频率和占用率吧... 最近在优化 App 的性能,需要获取当前 CPU视频频率和占用率,通过查询资料,大致思路如下:目前没有标准的

Android开发中gradle下载缓慢的问题级解决方法

《Android开发中gradle下载缓慢的问题级解决方法》本文介绍了解决Android开发中Gradle下载缓慢问题的几种方法,本文给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧... 目录一、网络环境优化二、Gradle版本与配置优化三、其他优化措施针对android开发中Gradle下载缓慢的问

SpringBoot中整合RabbitMQ(测试+部署上线最新完整)的过程

《SpringBoot中整合RabbitMQ(测试+部署上线最新完整)的过程》本文详细介绍了如何在虚拟机和宝塔面板中安装RabbitMQ,并使用Java代码实现消息的发送和接收,通过异步通讯,可以优化... 目录一、RabbitMQ安装二、启动RabbitMQ三、javascript编写Java代码1、引入

Nginx设置连接超时并进行测试的方法步骤

《Nginx设置连接超时并进行测试的方法步骤》在高并发场景下,如果客户端与服务器的连接长时间未响应,会占用大量的系统资源,影响其他正常请求的处理效率,为了解决这个问题,可以通过设置Nginx的连接... 目录设置连接超时目的操作步骤测试连接超时测试方法:总结:设置连接超时目的设置客户端与服务器之间的连接