Is mutation testing useful in practice? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:10:49Z http://stackoverflow.com/feeds/question/242650 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/242650/is-mutation-testing-useful-in-practice 9 Is mutation testing useful in practice? Mnementh 2008-10-28T09:29:02Z 2009-08-27T09:59:58Z <p>It exists the technology of <a href="http://en.wikipedia.org/wiki/Mutation_testing" rel="nofollow">mutation testing</a>. It checks, if the tests are running even if you change the code. If not all is OK, if the tests are running they don't cover all eventualities. There is some theoretical work about it, but I'm interested in the question, if it is useful in practice? Do you have any examples of real life applications of mutation testing? Does it work better than simple test-coverage-tools? Or is it useless?</p> <p>What are the advantages/disadvantages of mutation testing in the real world?</p> http://stackoverflow.com/questions/242650/is-mutation-testing-useful-in-practice/243046#243046 5 Answer by Shane MacLaughlin for Is mutation testing useful in practice? Shane MacLaughlin 2008-10-28T12:11:43Z 2008-10-28T12:11:43Z <p>I looked at mutation test some time ago as a method for checking the efficacy of my automated regession testing scripts. Basically, a number of these scripts had missing checkpoints, so while they were exercising the application being tested correctly, they weren't verifying the results against the baseline data. I found that a far simpler method than changing the code was to write another application to introduce modifications to a copy of the baseline, and re-run the tests against the modified baseline. In this scenario, any test that passed was either faulty or incomplete.</p> <p>This is not genuine mutation testing, but a method that uses a similar paradigm to test the efficacy of test scripts. It is simple enough to implement, and IMO does a good job.</p>