Tagged Questions
21
votes
2answers
538 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 ...
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 ...
1
vote
2answers
131 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) ...