A method of software testing that involves modifying the source code or compiled intermediate code (Java: byte code, .NET: IL). Test suites that do not fail under each of these "mutations" is considered to be inadequate.
1
vote
1answer
64 views
Sonar Pitest Plugin
I want to integrate some mutation testing to ensure the quality of my junit tests. I want to have the results in the sonar dashboard of my project.
The sonar pitest plugin seems to do what i want, ...
0
votes
0answers
83 views
Mutation testing ActiveRecord models with the mutant gem
I've been trying to get started with mutation testing for our rails app, but haven't been able to get it working - has anyone managed to set this up?
Here's what I've tried so far:
mutant -I ...
1
vote
1answer
189 views
Open source mutation testing c++
I need an open source tool (even a relatively primitive one will do) which performs Mutation Testing on C++ code. I require it to be open source as I require to modify it in a proof of concept ...
6
votes
4answers
358 views
Off By One errors and Mutation Testing
In the process of writing an "Off By One" mutation tester for my favourite mutation testing framework (NinjaTurtles), I wrote the following code to provide an opportunity to check the correctness of ...
3
votes
1answer
224 views
Creating an IL instruction with an inline argument using Mono.Cecil
I'm playing with mutation testing at the moment. One of the mutations I'm looking at involves swapping parameters, for which I may need to swap, for example Ldarg.0 and Ldarg_S with an operand ...
0
votes
4answers
333 views
What's the difference between regression testing and mutation testing?
Just wonder what the difference is. I need some concise explanation.The wikipedia is a bit too verbose for me.
1
vote
1answer
265 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
2answers
200 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 ...
15
votes
2answers
540 views
Are there any good mutation testing tools for ruby 1.9 and RSpec2?
I used to use Heckle, but it is incompatible with ruby 1.9 because of issues with ParseTree. I've looked for alternatives, but the only thing that looked promising was Chaser, and that did not have ...
2
votes
1answer
476 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 ...
4
votes
5answers
671 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
1answer
87 views
5
votes
1answer
1k 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 ...
23
votes
3answers
1k 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 ...
3
votes
2answers
132 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?
0
votes
0answers
164 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
4answers
278 views
Mutation Testing
Can mutation testing be successfully used to improve TDD from a defect reduction perspective?
1
vote
3answers
163 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) ...
5
votes
3answers
557 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
2answers
1k 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 ...
16
votes
11answers
2k 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 ...
21
votes
4answers
2k 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 ...
