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

org.pitest.mutationtest.verify.BuildVerifierArguments Maven / Gradle / Ivy

There is a newer version: 1.17.1
Show newest version
package org.pitest.mutationtest.verify;

import org.pitest.classpath.CodeSource;
import org.pitest.mutationtest.config.ReportOptions;

public class BuildVerifierArguments {

    private final CodeSource code;
    private final ReportOptions data;

    public BuildVerifierArguments(CodeSource code, ReportOptions data) {
        this.code = code;
        this.data = data;
    }

    public ReportOptions data() {
        return data;
    }

    public CodeSource code() {
        return code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy