Metana Editorialdevthini.hashnode.dev·Mar 14, 2024Solidity Mutation Testing: Guide for BeginnersImagine a world full of bugs and weird happenings, but we’re not talking about bugs you find under a rock—we’re diving into the cool world of checking smart contracts for mistakes, called solidity mutation testing. This special testing is like a supe...Solidity
Christian Lehnertblog.christianlehnert.dev·Dec 25, 2023Java Mutation Testing: A Comprehensive GuideMutation testing is a powerful approach for enhancing the quality and effectiveness of your unit tests. It involves making small changes (mutations) to your program's source code and checking if the existing tests detect these changes. In Java, sever...1 like·452 readsJavaJava
Mihai-Cristian Fagadaublog.mihaifagadau.dev·Jul 12, 2023Mutation TestingWelcome to the fourth and final instalment of my series on Advanced Software Testing Techniques. Throughout this journey, I have shared some insights gained from my academic pursuits and hands-on experiences in the realm of software testing. Today, I...90 readsAdvanced Software Testing Techniquesmutation testing
Raul Naupariblog.raulnq.com·Feb 19, 2023Mutation Testing with Stryker.NETHow do we know that the unit tests we develop are efficient enough to ensure the quality of our code? We usually believe that high code coverage is a good indicator that our code does what we expect, but this is not always true. Let's test this with ...12 likes·282 readsTesting
Jesus Daniel Medina Cruzjesusdmedinac.hashnode.dev·Jan 6, 2023Kill the mutants of your codeI recently was investigating about best practices for my testing on Android. You can easily make Unit, Instrumentation and UI testing, using tools like JUnit and Espresso. But the question that I always have when writing my test is the next: How many...32 readscode coverage
Isabel Garrido Cardenasisabeliita90.hashnode.dev·Dec 15, 2022Mutation Testing in Kotlin IISome months ago I wrote about how to use mutation testing in a Kotlin project, you can read it here After some months of having Mutation Testing in production as part of our CI we have learned a lot, I’m going to summarise the takeaways. First of all...195 readsKotlin
Marcin Zduniakzduniak.com·Jun 11, 2006Framework for Mutation Testing1. Introduction Mutation Testing allows us to evaluate the quality of tests prepared for a software application. It aims to determine test set thoroughness by measuring the extent to which a test set can detect slight variations in the program. If ...mutation testing