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

com.teamscale.Report.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

import com.teamscale.client.EReportFormat
import org.gradle.api.file.FileCollection
import java.io.File
import java.io.Serializable

/**
 * Report holder used to describe an already configured report
 * that should be uploaded to Teamscale.
 */
data class Report(

    /** Report format. */
    val format: EReportFormat,

    /** The report file. */
    val reportFile: File,

    /** The partition to upload the report to. */
    var partition: String,

    /** The commit message shown in Teamscale for the upload. */
    var message: String
) : Serializable




© 2015 - 2024 Weber Informatics LLC | Privacy Policy