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

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

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

import org.pitest.classpath.CodeSource;
import org.pitest.plugin.ToolClasspathPlugin;

public interface BuildVerifierFactory extends ToolClasspathPlugin {

    default BuildVerifier create(BuildVerifierArguments args) {
        return create(args.code());
    }

    @Deprecated
    default BuildVerifier create(CodeSource code) {
        throw new IllegalStateException();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy