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

@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<parent> <parent>
<groupId>de.gecheckt</groupId> <groupId>de.gecheckt</groupId>

View File

@@ -52,6 +52,30 @@
</execution> </execution>
</executions> </executions>
</plugin> </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> </plugins>
</build> </build>
</project> </project>

33
pom.xml
View File

@@ -35,6 +35,8 @@
<maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version> <maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version>
<maven-shade-plugin.version>3.6.0</maven-shade-plugin.version> <maven-shade-plugin.version>3.6.0</maven-shade-plugin.version>
<jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version> <jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version>
<pitest.maven.version>1.23.0</pitest.maven.version>
<pitest.junit5.plugin.version>1.2.3</pitest.junit5.plugin.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
@@ -149,6 +151,7 @@
<version>${jacoco-maven-plugin.version}</version> <version>${jacoco-maven-plugin.version}</version>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>
<plugins> <plugins>
@@ -164,6 +167,36 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>${pitest.maven.version}</version>
<executions>
<execution>
<id>pitest</id>
<phase>verify</phase>
<goals>
<goal>mutationCoverage</goal>
</goals>
</execution>
</executions>
<configuration>
<outputFormats>
<param>HTML</param>
<param>XML</param>
</outputFormats>
<failWhenNoMutations>false</failWhenNoMutations>
<exportLineCoverage>true</exportLineCoverage>
</configuration>
<dependencies>
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-junit5-plugin</artifactId>
<version>${pitest.junit5.plugin.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins> </plugins>
</build> </build>
</project> </project>