org.pitest.mutationtest.mocksupport.ResetJavassistEnvironment 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.
The newest version!
package org.pitest.mutationtest.mocksupport;
import org.pitest.mutationtest.environment.EnvironmentResetPlugin;
import org.pitest.mutationtest.environment.ResetEnvironment;
public class ResetJavassistEnvironment implements EnvironmentResetPlugin {
@Override
public ResetEnvironment make() {
return JavassistInterceptor::setMutant;
}
@Override
public String description() {
return "Reset environment for javassist";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy