Cleaned up examples

This commit is contained in:
Erik C. Thauvin 2024-11-04 12:21:41 -08:00
parent ce56ed6e1d
commit d9a225aa0e
Signed by: erik
GPG key ID: 776702A6A2DA330E
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ To run mutation tests and coverage, add the following to your build file:
public void pit() throws Exception {
new PitestOperation()
.fromProject(this)
.reportDir(Path.of("reports", "mutations").toString())
.reportDir(Path.of("reports", "mutations"))
.targetClasses(pkg + ".*")
.targetTests(pkg + ".*")
.verbose(true)

View file

@ -42,7 +42,7 @@ public class ExamplesBuild extends Project {
public void pit() throws Exception {
new PitestOperation()
.fromProject(this)
.reportDir(Path.of("reports", "mutations").toString())
.reportDir(Path.of("reports", "mutations"))
.targetClasses(pkg + ".*")
.targetTests(pkg + ".*")
.verbose(true)