+ * Defaults to {@code false}
+ *
+ * @param isDryRun {@code true} or {@code false}
+ * @return this operation instance
+ */
+ public PitestOperation dryRun(boolean isDryRun) {
+ if (isDryRun) {
+ options_.put("--dryRun", TRUE);
+ } else {
+ options_.put("--dryRun", FALSE);
+ }
+ return this;
+ }
+
/**
* List of globs to match against class names. Matching classes will be excluded from mutation.
*
@@ -292,9 +321,7 @@ public class PitestOperation extends AbstractProcessOperation