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

org.pitest.mutationtest.build.TestPrioritiser Maven / Gradle / Ivy

There is a newer version: 1.17.1
Show newest version
package org.pitest.mutationtest.build;

import java.util.List;

import org.pitest.coverage.TestInfo;
import org.pitest.mutationtest.engine.MutationDetails;

public interface TestPrioritiser {

  /**
   *
   * @param mutation
   *          Mutation to assign tests to
   * @return List of tests to run against mutant in priority order
   */
  List assignTests(MutationDetails mutation);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy