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...DiscussTesting
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...DiscussCode 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...Kazys Račkauskas and 3 others are discussing this4 people are discussing thisDiscuss·14 likes·122 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...DiscussNode.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 ...Discuss·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...Discuss·3 likes·75 readsMastering GraphQL with Node.jsTesting
Winnieforကလောင် တက်ခ်kalaung.org·Feb 10, 2024Unit Tests in Pythonဒီအပတ်ရဲ့သင်ခန်းစာအများစုကတော့ အရင်ကသိပြီးသားအကြောင်းအရာတွေပဲဖြစ်ပါတယ်။ အဲ့ဒီသိပြီးသားအကြောင်းအရာတွေကိုမှ ဘယ်လိုဟာတွေသတိထားရမယ်၊ codeကိုပိုကောင်းအောင် ဘယ်လိုရေးသားလို့ရတယ်ဆိုတာတွေကို ပြောပြသွားပါတယ်။ အဲ့ဒါအပြင် ကိုယ်ရေးထားတဲ့ code ကို ကိုယ်တိုင်ပြန်စ...Discusscs50
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...Discussjunit
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! ...Discuss·12 likes·78 readsTesting
Animesh PathakforKeploy Community Blogkeploy.hashnode.dev·Jan 10, 2024How to Do Java Unit Testing EffectivelyJava unit testing is a process used by developers to test individual components of a Java application. It helps ensure that each piece of code, or unit, functions correctly on its own. By isolating each unit and testing it independently, developers c...Discuss·10 likesjava testing framework