Tagged Questions

15
votes
2answers
1k views

Is mutation testing useful in practice?

It exists the technology of mutation testing. 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 ...
9
votes
8answers
959 views

What mutation-testing frameworks exist?

In another question I asked if mutation-testing is useful in practice. As I didn't get any answers that satisfy me, I want to check the current tools myself. So I need an overview about current ...
4
votes
2answers
383 views

Making unit tests fail quickly for mutation testing

One problem encountered with mutation testing is that it's slow, because by default you do a full test run (either a test file, or a suite of test files) for each mutation generated. One way to make ...
1
vote
1answer
153 views

C# Reflection: Replace a referenced assembly

I am currently writing a framework for MutationTesting. The code is almost complete, but there is a tiny bit which (after spending half a day on it) I cannot figure out: via reflection I would like ...
1
vote
1answer
377 views

Java Mutation Testing Integration with Maven

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 ...