Android单元类别测试

前端之家收集整理的这篇文章主要介绍了Android单元类别测试前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我希望能够为我的 Android项目提供两个(或多个)测试任务,其中差异是要包含/排除的一组不同的Junit类别.

使用gradle java插件,我可以做类似的事情

task testFast(type: Test) {
    useJUnit {
        includeCategories 'foo.Fast'
        excludeCategories 'foo.Slow'
    }
}

task testSlow(type: Test) {
    useJUnit {
        includeCategories 'foo.Slow'
        excludeCategories 'foo.Fast'
    }
}

但是,如果使用android插件,我必须将testOptions添加到android闭包中以包含/排除,

android {
...
    testOptions {
        unitTests.all {
            useJUnit {
                excludeCategories foo.Slow'
            }
        }
    }
...
}

但当然这适用于所有构建变体的所有测试任务.

有没有办法创建使用相同构建变体的任务,但是对不同类别执行测试?

解决方法

我想出的最好的方法是从命令行使用gradle属性
testOptions {
    unitTests.all {
        useJUnit {
            if (project.hasProperty('testCategory') && testCategory == "Slow") {
                includeCategories 'foo.Slow'
            } else {
                excludeCategories 'foo.Slow'
            }
        }
    }
}

并使用

gradlew -PtestCategory=Slow test
原文链接:https://www.f2er.com/android/309813.html

猜你在找的Android相关文章