kotlinx.kover.jvmagent.KoverAgentSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kover-jvm-agent Show documentation
Show all versions of kover-jvm-agent Show documentation
Kover JVM instrumentation agent
The newest version!
package kotlinx.kover.jvmagent;
import java.util.ArrayList;
import java.util.List;
public class KoverAgentSettings {
public String reportFilePath = null;
public boolean appendToReportFile = true;
public List inclusions = new ArrayList();
public List exclusions = new ArrayList();
@Override
public String toString() {
return "KoverAgentSettings{" +
"reportFilePath='" + reportFilePath + '\'' +
", appendToReportFile=" + appendToReportFile +
", inclusions=" + inclusions +
", exclusions=" + exclusions +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy