Virendra Oswalvirendraoswal.com·Oct 10, 2023Maximizing Code Quality: A Guide to Achieving Code Coverage with JaCoCo in Spring Boot ApplicationsCode coverage is an important metric in software development because it helps you understand how thoroughly your code has been tested be in a Unit or Integrated test in your environments. There are a lot of code coverage tools available, but today we...Discuss·52 readsBits and Piecesjacoco
Christian Asconedingdongbug.hashnode.dev·Sep 22, 2023Cracking the code coverage mythWriting software tests is one of those activities that can dramatically increase its robustness and reliability, allowing developers to correct and refactor code knowing that nothing has been damaged, however, test suites are made of code as well, wr...Discuss·1 like·271 readscode coverage
Sushant Yadavsushant8421.hashnode.dev·Sep 10, 2023CityMall's Unified Code Coverage: Crafting Dynamic Badges for Multi-Language RepositoriesAt CityMall, ensuring the robustness of our codebase isn't just a goal—it's a relentless pursuit. We understand the need for clarity regarding our code's health and quality. But how do we give our contributors and users real-time insight into the sta...Discuss·11 likescode coverage
Sushrut Kumar Mishrasushrutkumar.hashnode.dev·May 22, 2023Top 16 Code Coverage Java ToolsWriting code and maintaining code coverage is one of the crucial responsibilities. Developers can identify what part of their code is executed when someone runs the application. It results in increased quality of bug-free codes. In this article on to...Discuss·41 readscode coverage
Brett Suttonbrettsutton.hashnode.dev·May 8, 2023The OnePub Dart Side Blog - The myths and principles of TestingAll this testing is testing my patience. Yes, you can actually over-test an application. In this week's The Dart Side Blog we are going to discuss, not how to test, but what and when to test. We are also going to look at some of the common misconcept...DiscussDart
Mohamed Elzomorzomor.hashnode.dev·Apr 28, 2023Django unit testing - Part (1/2): Testing and Coverage conceptsIntroduction "Software testing is the process of evaluating and verifying that a software product or application does what it is supposed to do" This is the first thing you will see when you search for software testing in Google, and as clear as that...Discuss·133 readsPython
Bartosz Szłapakbarcioch.pro·Apr 3, 2023Code coverageCode coverage is a metric that measures what part of the tested code was executed. It's relevant because it helps to find edge cases, untested or dead code. Especially, when the application grows bigger and so does the code, these metrics become very...DiscussTesting Angular applicationsTesting
Avishek Sarkaraviii.hashnode.dev·Mar 27, 2023The art of fuzzing-A Step-by-Step Guide to Coverage-Guided Fuzzing with LibFuzzerIntroduction Fuzz testing or fuzzing is a widely used technique to identify vulnerabilities by automatically generating and sending random or semi-random inputs to the program. Any program that accepts arbitrary user input is a good candidate for fuz...Discuss·1.9K readsfuzzing
George Kampitakisgkampitakis.hashnode.dev·Jan 20, 2023Golang Unit Test CoverageGolang has really good support for unit testing out of the box. With the go test CLI and the testing std library you can do almost *everything. One of the niceties it provides is code coverage. You can run your tests with a flag -cover or you can eve...Discussgolang
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...Discuss·49 readscode coverage