I have the following usage scenario, but I am struggling to obtain the desired results.
I want to run the mutation for a single class and over a single test case.
Thus, I added this part to my pom file:
and I run the following command mvn eu.stamp-project:pitmp-maven-plugin:run.
With this configuration, I would expect to mutation only the com.module.MyClass and run the com.module.MyClassTest over the mutants, while instead it seems that the entire project is analyzed.
What might be happening is that your configuration has the wrong groupId value. It should be eu.stamp-project. It seems that, since it is not the same groupId the pom.xml configuration is not used.
Characteristics
Issue Type: help wanted
Description
I have the following usage scenario, but I am struggling to obtain the desired results. I want to run the mutation for a single class and over a single test case. Thus, I added this part to my pom file:
and I run the following command
mvn eu.stamp-project:pitmp-maven-plugin:run
.With this configuration, I would expect to mutation only the
com.module.MyClass
and run thecom.module.MyClassTest
over the mutants, while instead it seems that the entire project is analyzed.