
e.ultra.mutator.0.77.0.source-code.Mutator.kt Maven / Gradle / Ivy
package de.peekandpoke.ultra.mutator
/**
* Base interface for all mutators
*/
interface Mutator {
/**
* Get the original input value that the mutator is working on
*/
fun getInput(): I
/**
* Get the result of the mutation
*/
fun getResult(): I
/**
* Returns true when any mutation has taken place
*/
fun isModified(): Boolean
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy