I am trying to use PIT Mutation testing with maven for apache common math tests.
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>0.29</version>
<configuration>
<targetClasses>
<param>org.*</param>
</targetClasses>
<targetTests>
<param>org.*</param>
</targetTests>
</configuration>
</plugin>
I added this to my pom.xml and mvn org.pitest:pitest-maven:mutationCoverage
. I am able to run it but index files show Line Coverage and Mutation Coverage as 0%. I think I am not giving the parameters correctly. Moreover I need to mutate one test of apache-common-math For e.g. LUDecomposition.