9

我有一个带有测试用例的简单 android 项目。

ProjNameProject
--build.gradle
--ProjName
----build.gradle

我看到默认情况下android的新构建系统默认提供基本测试结果。(万岁!)

现在我也想看看代码覆盖率。我知道如何使用 Emma 和 Ant 脚本进行设置,但是我不想在这里运行 Ant 脚本。我觉得这会破坏我使用新构建系统的目的。

我尝试了一些在 Github 上找到的 Cobertura 插件。特别是: https ://github.com/stevesaliman/gradle-cobertura-plugin

但是,如果我尝试在ProjName构建文件中使用插件,则会收到有关java插件的错误。我在 tools.android.com 上读到添加java插件会产生这种行为。我没有应用它,所以 cobertura 插件必须是。
如果我尝试在主构建文件中使用插件,那么我看不到 java 错误,但现在我看到了:

Could not find net.sourceforge.cobertura:cobertura:1.9.4.1.
    Required by:
        :ProjNameProject:unspecified

我该怎么办??

4

2 回答 2

7

JaCoCo 支持已添加到 Android gradle 插件 v0.10 ( http://tools.android.com/tech-docs/new-build-system )。

Enable in the tested Build Type with testCoverageEnabled = true

android {
  jacoco {
    version = '0.6.2.201302030002'
  }
}

通过关注http://chrisjenx.com/gradle-robolectric-jacoco-dagger/,我能够获得 JaCoCo 与 Robolectric 合作的报道。

apply plugin: 'android'
apply plugin: 'robolectric'
apply plugin: 'jacoco'

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

    androidTestCompile fileTree(dir: 'libs/test', include: '*.jar')
    androidTestCompile 'junit:junit:4.11'
    androidTestCompile 'org.robolectric:robolectric:2.3'
    androidTestCompile 'com.squareup:fest-android:1.0.+'
}

robolectric {
    // Configure the set of classes for JUnit tests
    include '**/*Test.class'
    exclude '**/*AbstractRobolectricTestCase.class'

    // Configure max heap size of the test JVM
    maxHeapSize = "2048m"
}

jacoco {
    toolVersion = "0.7.1.201405082137"
}

//Define coverage source.
//If you have rs/aidl etc... add them here.
def coverageSourceDirs = [
    'src/main/java',
    'src/gen'
]

...

// Add JaCoCo test reporting to the test task
// http://chrisjenx.com/gradle-robolectric-jacoco-dagger/
task jacocoTestReport(type: JacocoReport, dependsOn: "testDebug") {
    group = "Reporting"
    description = "Generate Jacoco coverage reports after running tests."
    reports {
        xml.enabled = true
        html.enabled = true
    }

    // Class R is used, but usage will not be covered, so ignore this class from report
    classDirectories = fileTree(
        dir: './build/intermediates/classes/debug',
        excludes: ['**/R.class',
                   '**/R$*.class'
    ])
    sourceDirectories = files(coverageSourceDirs)
    executionData = files('build/jacoco/testDebug.exec')
}
于 2014-07-30T13:11:39.023 回答
6

Emma 支持计划很快在新的 Android 构建系统中发布:http ://tools.android.com/tech-docs/new-build-system/roadmap

到目前为止,还没有官方方法可以通过 gradle 在 android 上运行 emma。我想检测可以很容易地实现,但是你会错过一种告诉 Android 运行覆盖率测试的方法。此外,目前没有办法(据我所知)从设备中提取 emma 运行时覆盖率数据。

这个项目可能会让你感兴趣:https ://github.com/stephanenicolas/Quality-Tools-for-Android 。它会在 emma 进入 Android Gradle 插件后立即更新。

- - 更新

此插件无法与 Android 一起使用,因为它使用了与 Android 插件不兼容的 Java 插件。

于 2013-08-13T23:08:26.597 回答