LittleDarwin icon indicating copy to clipboard operation
LittleDarwin copied to clipboard

Java Mutation Testing Framework Written in Python

Results 1 LittleDarwin issues
Sort by recently updated
recently updated
newest added

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...