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

org.pitest.mutationtest.engine.gregor.MutationContext Maven / Gradle / Ivy

There is a newer version: 1.16.1
Show newest version
package org.pitest.mutationtest.engine.gregor;

import org.pitest.mutationtest.engine.MutationIdentifier;
import org.pitest.mutationtest.engine.gregor.blocks.BlockCounter;

public interface MutationContext extends BlockCounter {

  void registerCurrentLine(int line);

  ClassInfo getClassInfo();

  MutationIdentifier registerMutation(MethodMutatorFactory factory,
      String description);

  boolean shouldMutate(MutationIdentifier newId);

  void disableMutations(String reason);

  void enableMutatations(String reason);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy