Android JaCoCo 的报道发布
Android Coverage launch with JaCoCo
我们有一个 Android 应用程序,我们正在使用 Gradle/Android Studio 构建并使用 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"添加到app>src>main
将 jacoco-agent.properties 文件添加到资源。
将 destfile=/sdcard/coverage.exec 写入文件 jacoco-agent.properties
现在将此 class 添加到您的项目中。
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 task define above there "jacocoTestReport".
好的。全部做完。在 "yourapp/build/reports/jacoco/jacocoTestReport/html/".
中打开 index.html
我们有一个 Android 应用程序,我们正在使用 Gradle/Android Studio 构建并使用 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"添加到app>src>main
将 jacoco-agent.properties 文件添加到资源。
将 destfile=/sdcard/coverage.exec 写入文件 jacoco-agent.properties
现在将此 class 添加到您的项目中。
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 task define above there "jacocoTestReport".
好的。全部做完。在 "yourapp/build/reports/jacoco/jacocoTestReport/html/".
中打开 index.html