AndroidStudio:JaCoCo代码覆盖率报告的覆盖率为0%

时间:2015-06-01 21:00:23

标签: android android-studio code-coverage jacoco

我最近将代码覆盖率纳入了我的项目。它创建了一个我可以查看的报告,它看起来效果很好。

唯一的问题是它缺少我的测试 - 我现在没有很好的代码覆盖率,但它报告所有类和其他文件的覆盖率为0%。

我可以看到正在运行的测试,并且可以看到它们通过,但它们并没有被计算在内。

我的配置是:

android {
    compileSdkVersion 18
    buildToolsVersion '21.1.1'
    ...
     debug {
            minifyEnabled false
            testCoverageEnabled = true
        }
}

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:0)

它正在(再次)与

一起工作
androidTestCompile 'com.android.support.test:runner:0.4.1'
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'