LittleDarwin icon indicating copy to clipboard operation
LittleDarwin copied to clipboard

Use "smart" pattern matching for creating mutants

Open dwagelaar opened this issue 8 years ago • 1 comments

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.

dwagelaar avatar Feb 28 '17 10:02 dwagelaar