Created
January 29, 2019 18:13
-
-
Save MonkeyDAntoine/aadf122ea08a449b492f840b9ce85a30 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<profile> | |
<!-- mvn -PmutationCoverage org.pitest:pitest-maven:mutationCoverage --> | |
<id>mutationCoverage</id> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.pitest</groupId> | |
<artifactId>pitest-maven</artifactId> | |
<version>1.4.3</version> | |
<dependencies> | |
<dependency> | |
<groupId>org.pitest</groupId> | |
<artifactId>pitest-junit5-plugin</artifactId> | |
<version>0.8</version> | |
</dependency> | |
</dependencies> | |
<configuration> | |
<!--<verbose>true</verbose>--> | |
<threads>4</threads> | |
<timeoutConstant>60000</timeoutConstant> | |
<targetClasses> | |
<param>com.wl.mts.tt.cm.id.issuer*</param> | |
</targetClasses> | |
<targetTests> | |
<param>com.wl.mts.tt.cm.id.issuer.*Test</param> | |
</targetTests> | |
<excludedClasses> | |
<param>some.package.*</param> | |
</excludedClasses> | |
<avoidCallsTo> | |
<avoidCallsTo>java.util.logging</avoidCallsTo> | |
<avoidCallsTo>org.apache.log4j</avoidCallsTo> | |
<avoidCallsTo>org.slf4j</avoidCallsTo> | |
<avoidCallsTo>org.apache.commons.logging</avoidCallsTo> | |
</avoidCallsTo> | |
<mutators> | |
<mutator>CONDITIONALS_BOUNDARY</mutator> | |
<mutator>INCREMENTS</mutator> | |
<mutator>INVERT_NEGS</mutator> | |
<mutator>MATH</mutator> | |
<mutator>NEGATE_CONDITIONALS</mutator> | |
<mutator>RETURN_VALS</mutator> | |
<mutator>VOID_METHOD_CALLS</mutator> | |
<!--<mutator>REMOVE_CONDITIONALS</mutator>--> | |
<!--<mutator>INLINE_CONSTS</mutator>--> | |
</mutators> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</profile> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment