gpt4 book ai didi

JaCoCo 推出 Android Coverage

转载 作者:行者123 更新时间:2023-11-29 14:47:29 28 4
gpt4 key购买 nike

我们有一个使用 Gradle/Android Studio 构建的 Android 应用程序,并使用 JaCoCo 为我们的单元测试生成代码覆盖率报告;这很好用。我们也有兴趣能够为手动测试生成覆盖率报告;也就是说,显示在任意应用程序启动中涵盖了哪些代码。看来 JaCoCo 的前身 EclEmma能够做到这一点,但我无法以任何方式找到关于 JaCoCo 的任何确认(尽管由于缺乏讨论,我开始认为这是不可能的)。

我曾尝试使用 Eclipse 中的 EclEmma 只是为了得到一些东西,但最新版本失败了 this error ,而且我也无法立即让旧版本正常工作。

谁能确认是否可以使用 JaCoCo 生成任意应用程序启动的覆盖率数据?就像,运行应用程序,按下按钮,关闭应用程序并获得有关您按下的按钮执行了哪些代码的报告。如果没有,是否有其他工具可以完成此任务?

谢谢!

最佳答案

apply plugin: 'jacoco'
def coverageSourceDirs = [
'../app/src/main/java'
]

jacoco{
toolVersion = "0.7.4.201502262128"
}

task jacocoTestReport(type: JacocoReport) {
group = "Reporting"
description = "Generate Jacoco coverage reports after running tests."
reports {
xml.enabled = true
html.enabled = true
}
classDirectories = fileTree("enter code here"
dir: './build/intermediates/classes/debug',
excludes: ['**/R*.class',
'**/*$InjectAdapter.class',
'**/*$ModuleAdapter.class',
'**/*$ViewInjector*.class'
])
sourceDirectories = files(coverageSourceDirs)
executionData = files("$buildDir/outputs/code-coverage/connected/coverage.exec")
doFirst {
new File("$buildDir/intermediates/classes/").eachFileRecurse { file ->
if (file.name.contains('$$')) {
file.renameTo(file.path.replace('$$', '$'))
}
}
}
}

//这是为了报告

 debug {
testCoverageEnabled true
}

//这是离线的

将这些添加到 build.gradle 文件中。

将目录“resources”添加到应用>src>main

将 jacoco-agent.properties 文件添加到资源中。

将 destfile=/sdcard/coverage.exec 写入文件 jacoco-agent.properties

现在将这个类添加到您的项目中。

public class jacoco {
static void generateCoverageReport() {
String TAG = "jacoco";
// use reflection to call emma dump coverage method, to avoid
// always statically compiling against emma jar
String coverageFilePath = "/sdcard/coverage.exec";
java.io.File coverageFile = new java.io.File(coverageFilePath);
try {
Class<?> emmaRTClass = Class.forName("com.vladium.emma.rt.RT");
Method dumpCoverageMethod = emmaRTClass.getMethod("dumpCoverageData",
coverageFile.getClass(), boolean.class, boolean.class);

dumpCoverageMethod.invoke(null, coverageFile, false, false);
Log.e(TAG, "generateCoverageReport: ok");
} catch (Exception e) {
new Throwable("Is emma jar on classpath?", e);
}
}
}

当您的应用处于 onDestroy 状态时调用该函数

jacoco.generateCoverageReport();

您可以运行您的应用程序。当测试结束时你可以使用命令“adb pull/sdcard/coverage.exec yourapp/build/outputs/code-coverage/connected/coverage.exec”。

最后一个操作运行 gradle 任务定义上面有“jacocoTestReport”。

好的。全做完了。在“yourapp/build/reports/jacoco/jacocoTestReport/html/”中打开 index.html。

关于JaCoCo 推出 Android Coverage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30035964/

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