mutation-testing Questions
11
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?
What are the advantages/disadvantages of mutation tes...
Routinize asked 28/10, 2008 at 9:29
5
Solved
When running mvn org.pitest:pitest-maven:mutationCoverage, I get the error as follows (
Environment: Windows 10, Maven 3.6.1, Java 11, junit-jupiter 5.4.1, pitest 1.4.7)
[ERROR] Failed to execute ...
Spallation asked 14/4, 2019 at 21:5
2
I am currently working on a project to implementing mutation-testing for F#.
To access the FCS process I am using the FSharp.Compiler.Service package.
I am having some trouble with the compilation ...
Homeward asked 20/11, 2020 at 11:28
5
i have problem with my configuration of maven and pitest.
Pitest generation mutation is ok but he can't see my class of test ..
if you have any solution :D
I have main source like that /src/m...
Croquet asked 18/2, 2016 at 8:6
2
Solved
My context for this question is in Python.
Hypothesis Testing Library (i.e. Property Based Testing):
https://hypothesis.readthedocs.io/en/latest/
Mutation Testing Library:
https://github.com/six...
Roguish asked 1/8, 2016 at 16:45
6
Solved
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 ...
Halliday asked 17/1, 2011 at 17:16
2
I have a method that returns a custom object
public MyObject getTheObject(){
...
return muObject;
}
its unit test checks that the object returned by getTheObject() method is not null
@Test
publi...
Calvities asked 11/3, 2019 at 14:47
1
I have the following:
public class UnsetProperty extends Command {
@Resource
private SetProperty setProperty;
public String parse(String[] args) {
if (args.length != 4) {
throw new RuntimeE...
Sour asked 16/3, 2015 at 12:59
3
Solved
I have to exclude my integration tests from their execution by PIT. There is an option excludedTestClasses since version 1.3.0. I tried to pass over these tests by the following configration of the...
Ingathering asked 27/1, 2018 at 1:58
2
While writing another unittest in Python and after learning about multiple testing methods, I got curious how many mutants would be killed if I performed mutation testing on my code.
The problem i...
Hypothesis asked 20/9, 2014 at 23:48
1
Solved
folks!
I've tried to use the pitest-maven plugin in my Maven / Java project and it is apparently failing to generate an aggregated report (taking into consideration that I have a multi-module proje...
Drill asked 6/4, 2018 at 11:35
1
Solved
I am starting a new project in c# and I am looking for a tool that helps me do mutation tests. I have previously done mutation testing in java using pitest and liked it very much.
Now I am lo...
Anastomose asked 14/9, 2016 at 10:50
1
for a study on genetic programming, I would like to implement an evolutionary system on basis of llvm and apply code-mutations (possibly on IR level).
I found llvm-mutate which is quite useful exe...
Ranita asked 11/12, 2014 at 10:38
1
Solved
I am trying to exclude PIT from mutating I/O methods, such "close" and "flush". Here is my Maven configuration:
<plugin>
<groupId>org.pitest</groupId>
<ar...
Canso asked 10/6, 2016 at 7:29
1
According to Pitest's documentation, it seems that this should be simple, but it is giving me some trouble. I should be able to have
java -cp <your classpath> \
org.pitest.mutationtest.comm...
Unbelt asked 18/2, 2015 at 5:39
1
Solved
While trying to run a PIT mutation test I get the following error:
mutationCoverage failed: All tests did not pass without mutation when calculating line coverage. Mutation testing requires a gr...
Painting asked 11/6, 2015 at 19:12
7
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...
Cronyism asked 27/6, 2011 at 1:6
2
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...
Linnlinnaeus asked 6/2, 2011 at 23:0
3
Solved
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?
Justification asked 7/6, 2010 at 14:0
1
I'm very interested in Mutation Testing, so I've tried some tools like mujava and this tool worked well with Java code.
I've also read that applying mutation testing on Android isn't trivial.
So, ...
Unattached asked 4/2, 2014 at 8:25
1
Solved
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,...
Purchase asked 8/3, 2013 at 8:45
3
Solved
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 ma...
Exanthema asked 16/4, 2009 at 2:48
11
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 curre...
Perigon asked 29/10, 2008 at 11:47
4
Solved
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 o...
Lover asked 30/4, 2012 at 11:43
2
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...
Decant asked 24/11, 2011 at 6:5
1 Next >
© 2022 - 2024 — McMap. All rights reserved.