Tag: test-driven-development
-
Understanding the Difference Between Test Scenarios and Test Cases
When we discuss software testing, we hear commonly about two things: – “test scenarios” and “test cases”. Now, these terms might sound similar to each other, but they play distinct roles in ensuring the quality of software applications. So, let’s break it down in simpler terms as we explore the core differences between test scenarios…
-
My journey of Automating Test Cases!
Hey! Testing keploy with postman APIs by making API calls and checking if the response is right or not (manually) is a frustrating task.🥱 I have been exploring different ways to automate testing. So, next time I don’t have to execute the same things again.🕵️♀️ Over the period of last few weeks, I have been exploring…
-
What is unit testing anyways?
Introduction: Unit testing is a technique of testing that emphasizes testing a particular piece of code. Unit testing is mainly done to test the functionality of a block of code i.e to check whether the code does what you expect it to do. But does that mean we have to test every functionality individually? An…