All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.teamscale.config.JacocoReportConfiguration.kt Maven / Gradle / Ivy

Go to download

A Gradle plugin that supports collecting Testwise Coverage and uploading reports to Teamscale.

There is a newer version: 29.0.0
Show newest version
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)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy