Skip to content

Commit

Permalink
ANT support for the fullMutationMatrix option (#749)
Browse files Browse the repository at this point in the history
* ANT support for the fullMutationMatrix option
  • Loading branch information
ayaankazerouni authored Apr 1, 2020
1 parent 96b87c5 commit b87f42b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pitest-ant/src/main/java/org/pitest/ant/PitestTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,10 @@ public void setMutationEngine(String value) {
this.setOption(ConfigOption.MUTATION_ENGINE, value);
}

public void setFullMutationMatrix(final String value) {
this.setOption(ConfigOption.FULL_MUTATION_MATRIX, value);
}

public void setJVM(String value) {
this.setOption(ConfigOption.JVM_PATH, value);
}
Expand Down
7 changes: 7 additions & 0 deletions pitest-ant/src/test/java/org/pitest/ant/PitestTaskTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,13 @@ public void shouldPassClasspathJarFlagToJavaTask() {
this.pitestTask.execute(this.java);
verify(this.arg).setValue("--useClasspathJar=true");
}

@Test
public void shouldPassMutationMatrixFlagToJavaTask() {
this.pitestTask.setFullMutationMatrix("true");
this.pitestTask.execute(this.java);
verify(this.arg).setValue("--fullMutationMatrix=true");
}

private static class PathMatcher extends ArgumentMatcher<Path> {

Expand Down

0 comments on commit b87f42b

Please sign in to comment.