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

e.ultra.mutator.0.76.0.source-code.Mutator.kt Maven / Gradle / Ivy

The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy