LittleDarwin
LittleDarwin copied to clipboard
Use "smart" pattern matching for creating mutants
Example:
String getName() { return this.name; }
should not be mutated (simple property getter), whereas:
String addToName() { this.name = "test" + this.name; return this.name; }
should be mutated (has logic). Same for property setters.