weaponregex.model.mutation.Mutant.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weapon-regex_3 Show documentation
Show all versions of weapon-regex_3 Show documentation
Weapon regeX mutates regular expressions for use in mutation testing.
package weaponregex.model.mutation
import weaponregex.model.Location
/** A mutation made by the mutator.
* @param pattern
* The replacement pattern
* @param name
* Name of the mutation
* @param location
* [[weaponregex.model.Location]] in the original string where the mutation occurred
* @param levels
* The mutation levels of the mutator
* @param description
* Description on the mutation
*/
case class Mutant(pattern: String, name: String, location: Location, levels: Seq[Int], description: String)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy