Advertisement
ogre_x

pitest profile

Jun 16th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.85 KB | None | 0 0
  1.  <profile>
  2.             <id>pitest</id>
  3.             <activation>
  4.                 <activeByDefault>false</activeByDefault>
  5.             </activation>
  6.             <build>
  7.                 <plugins>
  8.                     <plugin>
  9.                         <groupId>org.pitest</groupId>
  10.                         <artifactId>pitest-maven</artifactId>
  11.                         <version>1.2.0</version>
  12.                         <configuration>
  13.                             <targetClasses>
  14.                                 <param>se.ehalsomyndigheten.lmkoll.*</param>
  15.                             </targetClasses>
  16.                             <targetTests>
  17.                                 <param>se.ehalsomyndigheten.lmkoll.*</param>
  18.                             </targetTests>
  19.                             <mutators>
  20.                                 <mutator>CONDITIONALS_BOUNDARY</mutator>
  21.                                 <mutator>INCREMENTS</mutator>
  22.                                 <mutator>INVERT_NEGS</mutator>
  23.                                 <mutator>MATH</mutator>
  24.                                 <mutator>NEGATE_CONDITIONALS</mutator>
  25.                                 <mutator>RETURN_VALS</mutator>
  26.                                 <mutator>VOID_METHOD_CALLS</mutator>
  27.                                 <mutator>CONSTRUCTOR_CALLS</mutator>
  28.                                 <mutator>INLINE_CONSTS</mutator>
  29.                                 <mutator>NON_VOID_METHOD_CALLS</mutator>
  30.                                 <mutator>REMOVE_CONDITIONALS</mutator>
  31.                                 <mutator>EXPERIMENTAL_MEMBER_VARIABLE</mutator>
  32.                                 <mutator>EXPERIMENTAL_SWITCH</mutator>
  33.                             </mutators>
  34.                         </configuration>
  35.                     </plugin>
  36.                 </plugins>
  37.             </build>
  38.         </profile>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement