≈
home ·
quickstart ·
faq ·
downloads ·
news ·
links ·
email ·
rss
≈
PIT is available from maven central as of version 0.20.
Add the plugin to build/plugins in your pom.xml
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>LATEST</version>
<configuration>
<targetClasses>
<param>com.your.package.root.want.to.mutate*</param>
</targetClasses>
<targetTests>
<param>com.your.package.root*</param>
</targetTests>
</configuration>
</plugin>
That’s it, you’re up and running.
PIT provides two goals
The mutation coverage goal analyses all classes in the codebase that match the target tests and target classes filters.
It can be run directly from the commandline
mvn org.pitest:pitest-maven:mutationCoverage
This will output an html report to target/pit-reports/YYYYMMDDHHMI.
The scm mutation coverage goal analyses only classes that match the filters and who’s source file have a given status within the project source control system (by default ADDED or MODIFIED). This provides a quick way to check the coverage of changes prior to checking code in / pushing code to a repository.
mvn org.pitest:pitest-maven:scmMutationCoverage -Dinclude=ADDED,UNKNOWN -DmutationThreshold=85
To use this goal the maven scm plugin must be correctly configured for the project
This goal does not currently guarantee to analyse changes made to non public classes that are not inner classes.
PIT tries to work sensibly out of the box, but also provides many configuration options.
The number of threads and list of mutation operators are both worth having a play with.
Output directory for the reports
The classes to be mutated. This is expressed as a list of globs.
For example
<targetClasses>
<param>com.mycompany.*</param>
</targetClasses>
or
<targetClasses>
<param>com.mycompany.package.*</param>
<param>com.mycompany.packageB.Foo*</param>
<param>com.partner.*</param>
</targetClasses>
A list of globs can be supplied to this parameter to limit the tests available to be run. If this parameter is not supplied then any test fixture that matched inScopeClasses may be used.
This parameter can be used to point PIT to a top level suite or suites. Custom suites such as ClassPathSuite are supported. Tests found via these suites can also be limited by the distance filter (see below).
The inScopeClasses and targetClasses parameters look confusingly similar. Both are lists of globs that will be matched against the names of classes on your classpath.
Only classes that match the inScopeClasses globs will be considered as runnable tests or mutable classes. If you have a large classpath to scan this parameter can be used to limit the classes that are examined (and therefore loaded).
The targetClasses globs are then used to filter out a subset of these classes which will be considered for mutation.
In practice inScopeClasses and targetClasses are often then same. If you don’t specify them explicitly then PIT will construct a glob from the project’s group id of the form. group.id.*
PIT can optionally apply an additional filter to the supplied tests, such that only tests a certain distance from a mutated class will be considered for running. e.g A test that directly calls a method on a mutated class has a distance of 1 , a test that calls a method on a class that uses the mutee as an implementation detail has a distance of 2 etc.
This filter will not work for tests that utilise classes via interfaces, reflection or other methods where the dependencies between classes cannot be determined from the byte code.
The distance filter is particularly useful when performing a targeted mutation test of a subset of classes within a large project as it avoids the overheads of calculating the times and coverage of tests that cannot exercise the mutees.
The number of threads to use when mutation testing. By default a single thread will be used.
Whether or not to create mutations in static initializers. Defaults to false.
List of mutation operators to apply.
for example
<configuration>
<mutators>
<mutator>CONSTRUCTOR_CALLS</mutator>
<mutator>NON_VOID_METHOD_CALLS</mutator>
</mutators>
</configuration>
For details of the available mutators and the default set applied see mutation operators.
List of globs to match against method names. Methods matching the globs will be exluded from mutation.
List of globs to match against class names. Matching classes will be excluded from mutation. Matching test classes will not be run (note if a suite includes an excluded class, then it will “leak” back in).
List of packages and classes which are to be considered outside the scope of mutation. Any lines of code containing calls to these classes will not be mutated.
If a list is not explicitly supplied then PIT will default to a list of common logging packages as follows
Output verbose logging. Defaults to off/false.
A factor to apply to the normal runtime of a test when considering if it is stuck in an infinite loop.
Defaults to 1.25
Constant amount of additional time to allow a test to run for (after the application of the timeoutFactor) before considering it to be stuck in an infinite loop.
Defaults to 3000
The maximum number of mutations to create per class. Use 0 or -ve number to set no limit.
List of arguments to use when PIT launches child processes. This is most commonly used to increase the amount of memory available to the process, but may be used to pass any valid JVM argument.
For example when running on OpenJDK 7 the it is sometimes necessary to disable the split verifier.
<jvmArgs>
<value>-XX:-UseSplitVerifier</value>
</jvmArgs>
List of formats in which to write mutation results as the mutations are analysed. Supported formats are HTML, XML, CSV.
Defaults to HTML.
Whether to throw error when no mutations found.
Defaults to true.
List of TestNG groups to exclude from mutation analysis.
List of TestNG groups to include in mutation analysis.
Enabled by default since 0.29.
Indicates if PIT should attempt to detect the inlined code generated by the java compiler in order to implement finally blocks. Each copy of the inlined code would normally be mutated seperately, resulting in multiple identical looking mutations. When inlined code detection is enabled PIT will attempt to spot inlined code and create only a single mutation that mutates all affected instructions simulataneously.
The algorithm cannot easily distinguish between inlined copies of code, and genuine duplicate instructions on the same line within a finally block.
In the case of any doubt PIT will act cautiously and assume that the code is not inlined.
This will be detected as two separate inlined instructions
finally {
int++;
int++;
}
But this will look confusing so PIT will assume no in-lining is taking place.
finally {
int++; int++;
}
This sort of pattern might not be common with integer addition, but things like string concatenation are likely to produce multiple similar instructions on the same line.
Defaults to false.
By default PIT will create a date and time stamped folder for its output each it is run. This can can make automation difficult, so the behaviour can be supressed by setting timestampedReports to false.
Deafults to true.
Mutation score threshold at which to fail build.
Please bear in mind that your build may contain equivalent mutations. Careful thought must therefore be given when selecting a threshold.
Path to a file containing history information for incremental analysis.
Path to write history information for incremental analysis. May be the same as historyInputFile.