
org.pitest.mutationtest.environment.TransformationPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pitest Show documentation
Show all versions of pitest Show documentation
Mutation testing system for Java.
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