James Thomasjamestechblog.hashnode.dev·Dec 17, 2024Code Coverage vs Test Coverage: A Complete GuideTest coverage and code coverage are essential tools to analyze the software and measure the effectiveness of its codebase in development. They could be interchangeable, but they are different. This article explains what makes them different to help y...Code Coverage vs Test Coverage
Varun Kelkardevvarun.hashnode.dev·Nov 17, 2024Why 100% Code Coverage Won't Save Your CodebaseCode coverage is one of the most frequently discussed metrics in software development. It’s easy to see why—having a high percentage of tested code feels like a badge of honor for any team. But here’s the harsh truth: code coverage alone doesn’t ensu...JavaScript
Lasse R.lassetech.hashnode.dev·Oct 23, 2024Code Coverage: Guide to Metrics & Improving CoverageCode coverage measures how much of your code is tested. Here's what you need to know: It's calculated as: (Lines executed / Total lines) * 100 Higher coverage can lead to better quality and fewer bugs But 100% coverage isn't always necessary or pr...code coverage
NaveenKumar VRclaybrainer.com·Oct 20, 2024SonarQube Essentials: Why It’s Crucial in CI PipelinesHello and welcome, fellow DevOps enthusiasts! Thanks for joining this exploration. In the upcoming sections, we’ll dive into SonarQube, uncover its benefits, and discuss why it’s essential for your projects. Let’s jump in and get the code quality par...1 like·38 readsSonarQube Insights: Solving Code Quality Challenges TogetherStatic Application Security Testing (SAST
Lasse R.lassetech.hashnode.dev·Oct 16, 202410 Code Review Metrics to Improve Code Quality10 Code Review Metrics to Improve Code Quality Want to boost your code quality? Here are 10 key metrics to track: Code coverage Cyclomatic complexity Code churn Review turnaround time Defect density Code duplication Comment density Pull reque...Code Quality
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...14 likes·123 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...Node.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...1 like·173 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...covdata
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...Elixir