com.teamscale.config.JacocoReportConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of teamscale-gradle-plugin Show documentation
Show all versions of teamscale-gradle-plugin Show documentation
A Gradle plugin that supports collecting Testwise Coverage and uploading reports to Teamscale.
package com.teamscale.config
import com.teamscale.client.EReportFormat
import org.gradle.api.Project
import org.gradle.testing.jacoco.tasks.JacocoReport
/** Configuration for the JaCoCo coverage report. */
open class JacocoReportConfiguration(project: Project, task: JacocoReport) :
ReportConfigurationBase(EReportFormat.JACOCO, project, task) {
init {
destination.set(task.reports.xml.outputLocation)
}
}