Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java Mutation Testing Integration with Maven [closed]

Our project will integrate mutation testing as part of its build cycle. Right now, we are on the evaluation phase.

So far, I have only found that Jester has a maven-plugin (Grester). I have not been able to find anything for the other mutation testing tools available (Jumble, µJava and Javalanche). Of course, we want full maven integration. We do not want to reinvent the wheel (i.e., write our own maven plugin for the tool that we choose).

Do you know of any maven-plugins for those Jumble, µJava and Javalanche? I've already googled and, like I said, have only found Grester. Also, if you know of any other mutation testing tools for java, any hints will be greatly appreciated.

like image 884
chahuistle Avatar asked Feb 06 '11 23:02

chahuistle


Video Answer


1 Answers

PIT, provides a Maven plugin.

It's available from Maven central and has the advantage of being considerably faster than Jester, Jumble or muJava. It is also actively developed and supported which does not seem to be the case for Jester or muJava.

(disclosure I'm the author and am probably unfairly biased)

like image 157
henry Avatar answered Oct 19 '22 22:10

henry