1

On our company, we want to start to evaluate a quality of unit tests by creating mutation on our code.

Does anyone know any tool for mutation testing that uses Maven and can be integrated into the hudson?

user753536
  • 125
  • 1
  • 2
  • 5

2 Answers2

1

Assuming Java is your language of choice, PIT is a good tool. I also suggest you read this article Mutation Testing, a step further to the perfection

This thread compares other available tools: How can I perform mutation testing of my Java program?

Community
  • 1
  • 1
Aravind Yarram
  • 78,777
  • 46
  • 231
  • 327
1

PIT it the only tool I'm aware of that provides a maven plugin.

A summary of some of the other options is available here

http://pitest.org/java_mutation_testing_systems/

henry
  • 5,923
  • 29
  • 46