Davide Bellonecode4it.hashnode.dev·Aug 28, 2024FeaturedWhy reaching 100% Code Coverage must NOT be your testing goal (with examples in C#)Code Coverage is a valuable metric in software development, especially when it comes to testing. It provides insights into how much of your codebase is exercised by your test suite. However, we must recognize that Code Coverage alone should not be th...Kazys Račkauskas and 3 others are discussing this4 people are discussing thisDiscuss·14 likes·117 readsC#
Shivam Sourav JhaforKeploy Tech Blogkeploy-blog.hashnode.dev·Aug 21, 2024How to handle Node.js Code Coverage with NYC in Docker ContainersThere are particular difficulties in getting NYC coverage from Node.js operating in Docker containers. This blog discusses the procedures needed to operate Node.js clusters in Docker and produce reliable code coverage reports. How to Get Coverage nat...DiscussNode.js
Sadra Yahyapourblog.imsadra.me·Aug 9, 2024Python Open-Source Development: How I Build and Maintain Open-Source Repositories!Right now, you're probably using several open-source tools and benefiting from them. As an open-source enthusiast, I often follow a clear and reliable method for developing and maintaining my Python repositories. In this article, I will discuss the s...Discuss·1 like·157 readsPython
Akash KumarforKeploy Tech Blogkeploy-blog.hashnode.dev·Jul 22, 2024How to Use covdata for Better Go Code CoverageWhen you run your Go programs or integration tests, numbers of raw coverage files are typically generated and dumped into a directory specified by the GOCOVERDIR environment variable. These files contain valuable data about which parts of your code w...Discusscovdata
yeshan333shansan.hashnode.dev·May 26, 2024The solution of Elixir continuous runtime system code coverage collectionzh_hans 中文版本 Code coverage is an effective means to assist software engineers in verifying code quality. The runtime environment's ability to collect code coverage fully combines black and white box testing capabilities and greatly increases enginee...DiscussElixir
Vikas Yadavvikasyaadav.hashnode.dev·May 22, 2024Setup Code Coverage for Monorepo — SonarQubeIn a Monorepo setup, generating a coverage report for each library or app separately is common. However, tools like the Sonar scanner may encounter difficulties in combining these reports into a single comprehensive one. This issue arises when runnin...Discusscode coverage
Kadek Dhiva Tiradikablog.bydhiva.com·May 12, 2024Ensure code quality with help of static code analyzer and code coverageWhen we develop software we want to deliver best quality of code, so every line of code we write is matter, because its carries the potential of errors that can disturb business flow of our software. If you work alone on the small project maintaining...DiscussTesting
Gaurav S Tayadegauravtayade11.hashnode.dev·Jan 25, 2024How to push code coverage from Azure Devops to SonarQube for MavenIntroduction In this blog we are going to discuss, how to generate the code coverage from unit test and publish to sonarqube. Setup used:- Azure Devops Pipelines Maven Project SonarQube v8.9-community Step 1: Generate test case in Azure Devops...Discuss·26 readsazure-devops
Colin J Lacycolinj.hashnode.dev·Dec 12, 2023Mocking Imported Libraries in Golang Unit TestsIn my last post, I covered mocking using interfaces. In this one, I'll take that a step further and show how we can ensure that we're able to mock every imported lib in our tested functions by using private variables. tl;dr: you can check out a repo ...Discuss·312 readsunit testing
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·516 readsBits and Piecesjacoco