Skip to content

Commit

Permalink
mutation coverage 55%
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jan 13, 2025
1 parent 5d5adea commit 3b0df33
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,33 @@ SOFTWARE.
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.17.4</version>
<executions>
<execution>
<goals>
<goal>mutationCoverage</goal>
</goals>
<configuration>
<threads>4</threads>
<mutationThreshold>55</mutationThreshold>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-junit5-plugin</artifactId>
<version>1.2.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sonar</id>
Expand Down

0 comments on commit 3b0df33

Please sign in to comment.