Skip to content

Commit

Permalink
mutation-testing capability added
Browse files Browse the repository at this point in the history
  • Loading branch information
khanhassan committed Jan 10, 2017
1 parent 37d0fe6 commit 0f79dd8
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,23 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.1.11</version>
<configuration>
<avoidCallsTo>
<avoidCallsTo>java.util.logging</avoidCallsTo>
<avoidCallsTo>org.apache.log4j</avoidCallsTo>
<avoidCallsTo>org.slf4j</avoidCallsTo>
<avoidCallsTo>org.apache.commons.logging</avoidCallsTo>
</avoidCallsTo>
<coverageThreshold>75</coverageThreshold>
<mutationThreshold>75</mutationThreshold>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 0f79dd8

Please sign in to comment.