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

org.pitest.mutationtest.environment.TransformationPlugin Maven / Gradle / Ivy

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

import org.pitest.plugin.ClientClasspathPlugin;

import java.lang.instrument.ClassFileTransformer;

public interface TransformationPlugin extends ClientClasspathPlugin {

    @Deprecated
    default ClassFileTransformer makeTransformer() {
        return makeMutationTransformer();
    }

    default ClassFileTransformer makeCoverageTransformer() {
        return null;
    }

    default ClassFileTransformer makeMutationTransformer() {
        return null;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy