gpt4 book ai didi

android - 如何使用 jacoco 和 spoon 生成 .xml 或 .html

转载 作者:搜寻专家 更新时间:2023-11-01 09:39:02 25 4
gpt4 key购买 nike

我可以设置 spoon与:

spoon {
//...
codeCoverage = true
}

生成 coverage.ec 文件。

如何在 .xml.html 中生成报告?

最佳答案

您可以使用内置的 Jacoco Gradle 插件创建您自己的任务:

apply plugin: 'jacoco'

task jacocoTestReport(type: JacocoReport, dependsOn: ['<taskThatProducesEcFile>']) {

reports {
xml.enabled = true
html.enabled = true
}

def fileFilter = ['**/R.class', <another filters...>]
def debugTree = fileTree(dir: "${buildDir}/intermediates/classes/debug", excludes: fileFilter)
def mainSrc = "${project.projectDir}/src/main/java"

sourceDirectories = files([mainSrc])
classDirectories = files([debugTree])
executionData = files([<your_path_to_ec_file>])
}

关于android - 如何使用 jacoco 和 spoon 生成 .xml 或 .html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41027405/

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