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

kotlinx.kover.jvmagent.KoverAgentSettings Maven / Gradle / Ivy

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