gpt4 book ai didi

java - 覆盖率报告称 android 上的 gradle 覆盖率为零

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:25:06 25 4
gpt4 key购买 nike

我一直无法获得代码覆盖率来处理我的任何 android 项目。

为了简化事情,我创建了一个新项目(选定的空 Activity )。在 src/main/java 中的项目中添加了一个新的实用程序类。

然后我在 src/androidTest/java 中为它创建了一个单元测试。

更新了 gradle 文件以启用覆盖。

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
applicationId "com.example.michaelkrussel.coverageapp"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}

jacoco {
version "0.7.1.201405082137"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
testCoverageEnabled true
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
}

我运行测试然后使用 ./gradlew createDebugCoverageReport。单元测试显示我创建的测试通过,但覆盖率报告报告零覆盖率。

我假设我在 gradle 文件中遗漏了一些东西,或者没有运行正确的 gradle 任务,但我不知道是什么。

最佳答案

我在我的项目中使用这个配置并且工作正常!

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.1"

defaultConfig {
applicationId "br.com.acs.app"
minSdkVersion 18
targetSdkVersion 21
versionCode 1
versionName "1.0"
testApplicationId "br.com.acs.app.test"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
testCoverageEnabled true
}
}

packagingOptions {
exclude 'LICENSE.txt'
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'

androidTestCompile 'junit:junit:4.11'
androidTestCompile('com.android.support.test:testing-support-lib:0.1') {
exclude group: 'junit'
}
}

关于java - 覆盖率报告称 android 上的 gradle 覆盖率为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28993288/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com