Tagged Questions
The mutation-testing tag has no wiki summary.
21
votes
2answers
539 views
What mutation-testing frameworks exist for C/C++?
Mutation testing has been out there for a while now, and it seems there are at least one or two commercial mutation testing frameworks for C/C++. Have you used them? What are your experiences? Are ...
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 ...
2
votes
4answers
175 views
How can I perform mutation testing of my Java program?
Can anyone provide suggestions of tools that can be used to make mutations within a Java program at a source-code (not byte-code) level? I need to seed my source code with faults. I would prefer an ...
2
votes
4answers
847 views
How compatible are rspec and heckle?
I'm currently using test/unit, and I'm considering using rspec. However, I've noticed that rspec currently doesn't support heckle in ruby 1.9.1, and doesn't support passing any parameters to heckle ...
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 ...
1
vote
1answer
78 views
What programming languages can support mutation testing?
Is it harder (or impossible) to implement mutation testing in some languages than others? For example, is it possible to implement mutation testing in functional programming languages?
1
vote
2answers
132 views
What is the ruby test tool called that 'breaks' your code to see how tight your tests are?
A wee while ago I ended up on a page which hosted several ruby tools, which had 'crazy' names like 'mangler' or 'executor' or something. The tool's job was to modify you production code (at runtime) ...
0
votes
1answer
24 views
Possible class loader problems with java jumble mutations testing framework
This question is regarding the jumble mutation testing framework (http://jumble.sourceforge.net/)
i am trying to get jumble into the projects i work on my job.
i've run jumble on the classes of one ...
0
votes
3answers
46 views
Example open source projects built using maven and test with TestNG
I'm looking at adding TestNG support to http://pitest.org and could do with some real and dirty code to try it out on.
Can anyone suggest some smallish open source projects that are build using maven ...
0
votes
0answers
89 views
Mutation Testing
Are current Java-oriented mutation testing tools adequate and if not, what do they require to become adequate from both a test case evaluation and an improving TDD viewpoint
0
votes
3answers
186 views
Mutation Testing
Can mutation testing be successfully used to improve TDD from a defect reduction perspective?