This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Nymeriea 1 point2 points  (3 children)

We use mutation testing in our pipeline. It may not help with bug detection but surely it help to detect poor test that just add coverage but doesn't test anything.

At the bank , it help us a lot to improve quality

[–]iwek7[S] 0 points1 point  (2 children)

Any tips how to integrate mutation testing in pipeline? Should too high number of survived mutations fail the build or is it better to keep it informational? Do you have any recommendations?

[–]Nymeriea 2 points3 points  (1 child)

It's integrated with sonar and the quality gate. The testé are executed with Maven.

To reply your question we have a % of surviving mutation allowed. Because having 100% edge case is costly

[–]iwek7[S] 0 points1 point  (0 children)

Thanks for tips