Skip to content

Commit

Permalink
Merge pull request #917 from JKutscha/Mutator_ID_API
Browse files Browse the repository at this point in the history
Added the option to get all mutator IDs
  • Loading branch information
hcoles authored Jul 26, 2021
2 parents 19f4e1d + a3e5207 commit be8dd2e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,10 @@ public static Collection<MethodMutatorFactory> all() {
return fromStrings(MUTATORS.keySet());
}

public static Collection<String> getAllMutatorIds() {
return MUTATORS.keySet();
}

private static Collection<MethodMutatorFactory> stronger() {
return combine(
newDefaults(),
Expand Down

0 comments on commit be8dd2e

Please sign in to comment.