io.quarkus.jacoco.runtime.ReportInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-jacoco Show documentation
Show all versions of quarkus-jacoco Show documentation
Jacoco test coverage support
package io.quarkus.jacoco.runtime;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
public class ReportInfo {
public String reportDir;
public String dataFile;
public final List savedData = new ArrayList<>();
public Set sourceDirectories;
public Set classFiles;
public String artifactId;
}