1
0

PIT Mutation Testing aktiviert

This commit is contained in:
2026-04-01 16:04:51 +02:00
parent e3f6c14f2b
commit 3656f665bb
3 changed files with 97 additions and 38 deletions

View File

@@ -52,6 +52,30 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<executions>
<execution>
<id>pitest</id>
<phase>verify</phase>
<goals>
<goal>mutationCoverage</goal>
</goals>
<configuration>
<skip>true</skip>
</configuration>
</execution>
<execution>
<id>pitest-report-aggregate</id>
<phase>verify</phase>
<goals>
<goal>report-aggregate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>