Android Studio系列-单元测试入门篇

Posted IT_xiao小巫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android Studio系列-单元测试入门篇相关的知识,希望对你有一定的参考价值。

配置支持单元测试工程

在Build Variant窗口内的Test Artifact中选择“Unit Tests“

技术分享

技术分享

打开工程的build.gradle(Module:app)文件,添加JUnit4依赖,点击Gradle sync按钮。

build.gradle

dependencies {
    compile fileTree(dir: ‘libs‘, include: [‘*.jar‘])
    compile ‘com.android.support:appcompat-v7:22.1.1‘
    testCompile ‘junit:junit:4.12‘
}

创建单元测试

示例
创建Calculator类

技术分享

选中类名,右键如下:

技术分享

选中Test

技术分享

之后生成对应的测试类:

public class CalculatorTest {

    private Calculator mCalculator;

    @Before
    public void setUp() throws Exception {
        mCalculator = new Calculator();
    }

    @Test
    public void testSum() throws Exception {
        Assert.assertEquals(6d, mCalculator.sum(1d, 5d), 0);
    }

    @Test
    public void testSubstract() throws Exception {
        Assert.assertEquals(1d, mCalculator.substract(5d, 4d), 0);
    }

    @Test
    public void testDivide() throws Exception {
        Assert.assertEquals(4d, mCalculator.divide(20d, 5d ), 0);
    }

    @Test
    public void testMultiply() throws Exception {
        Assert.assertEquals(10d, mCalculator.multiply(2d, 5d),0);
    }
}

运行单元测试

选中测试类名,右键如下:

技术分享

点击Run CalculatorTest

技术分享

上面是错误结果。

下面是正确结果。

技术分享


欢迎关注公众号:wwjblog
技术分享



以上是关于Android Studio系列-单元测试入门篇的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio 入门

Android Studio 入门

Android Studio导入现有单元测试“无法找到仪器信息”

Android单元测试系列-Junit

Android单元测试系列-Junit

Android Studio 入门——002 控件篇