Jean-Luc Mupasajeanlucmupasa.hashnode.dev·Dec 20, 2024Elevate Code Quality Through Agile Test-Driven Development MethodsTable of Contents Introduction 1.1. A Brief History What is TDD? 2.1. What TDD is Not 2.2. What TDD Is How Long Does It Take to Learn TDD? Advantages & Disadvantages 4.1. Advantages of TDD 4.2. Disadvantages of TDD Demonstration 5.1. Red Phase: ...4 likes·56 readsTDD (Test-driven development)
Steve Worthamstevewortham.hashnode.dev·Oct 28, 2024What Is Unit Testing: A Complete Guide With ExamplesHowever, repeatedly testing it can be time-consuming, especially considering all the different operating scenarios it can use or the number of external dependencies involved. Instead, most developers opt for unit testing, where — as the name suggests...Testing
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#
Bonaroocharperbonaroo.hashnode.dev·Jul 15, 2024Building NodeJS applications without dependenciesIntroduction I’m going to build a twitter clone using NodeJS, but without any dependencies. I’ve written many Node applications using dependencies like express, jest, lodash, webpack, typescript, typeorm and many more. My applications can have tens o...Node.js
Chirag Choudharyblog.chiragc.com·Jun 1, 2024How We Mastered Unit Testing at Our StartupProblem Statement: At a startup where I joined as the 4th engineer, we faced a production issue every other weekend, which would be every 4th release, primarily due to new team members lacking context on different workflows. Adding documentation for ...1 likeunit testing
Gaurav Kumargauravbytes.hashnode.dev·Mar 16, 2024Empower Your GraphQL API Testing: A Step-by-Step Jest GuideAre you ready to take your GraphQL API testing to the next level? If you've ever wondered how to test your GraphQL endpoints using Jest effectively, you're in the right place. Testing GraphQL APIs can be challenging due to their unique query language...3 likes·107 readsMastering GraphQL with Node.jsTesting
Winnieforကလောင် တက်ခ်kalaung.org·Feb 10, 2024Unit Tests in Pythonဒီအပတ်ရဲ့သင်ခန်းစာအများစုကတော့ အရင်ကသိပြီးသားအကြောင်းအရာတွေပဲဖြစ်ပါတယ်။ အဲ့ဒီသိပြီးသားအကြောင်းအရာတွေကိုမှ ဘယ်လိုဟာတွေသတိထားရမယ်၊ codeကိုပိုကောင်းအောင် ဘယ်လိုရေးသားလို့ရတယ်ဆိုတာတွေကို ပြောပြသွားပါတယ်။ အဲ့ဒါအပြင် ကိုယ်ရေးထားတဲ့ code ကို ကိုယ်တိုင်ပြန်စ...cs50
Ever A. Olanoabyteortwo.com·Feb 6, 2024Catching Exceptions in Unit TestsThis was quite serendipitous as I was just about to start looking for a blog topic that started with the letter "C". It just fell on my lap today while reviewing someone else's pull request, particularly their unit tests. This is specifically about J...junit
Shivam Guptashivamshaa.hashnode.dev·Jan 18, 2024Test Cases for Main Course!Greetings. So we are back with test cases and someone recently told me food > drinks, and why I am telling you this? Because test cases > functions, let's all hail to test case supremacy. Enough of my nonsensical talk, let's dive straight into this! ...12 likes·78 readsTesting