Tag: unit-testing
-
How to Do Java Unit Testing Effectively
Java 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 can identify and fix issues early, improving the overall quality of the application. So,…
-
Creating the Balance Between End-to-End and Unit Testing
In the dynamic landscape of software development, the approach to testing has evolved significantly. One of the debates that often surfaces is the choice between end-to-end (E2E) testing and unit testing, particularly when it comes to testing in a live production environment. In this blog, we’ll explore the rationale behind Testing in Production and why…
-
Getting Started with Keploy
Introduction This is the age of "Automation". And We, Developers, always try to automate boring tasks! One of those boring tasks is Testing APIs by making API calls and checking if the response is right or not. But Keploy Solves this Problem pretty well. So in this article, getting started with Keploy, How it works,…
-
Unit Tests vs. End-to-End Tests: Which One Should You Prioritize?
There is often a philosophical debate about whether to write a unit test or an end-to-end test. This has been a common question I have encountered many times – when limited in time and resources, what kind of testing should be done? Weighing up such factors can be difficult, especially given that usually only one…
-
Go Mocks and Stubs generator Made Easy
Testing network stuff like APIs and database calls can be a real pain: I find myself burning way too much time just making mock data, instead of actually doing the tests or assertions. When you make fake mocks, you might end up using wrong guesses or data that’s just too unreal or vague. When things…
-
Simplifying JUnit Test Stubs and Mocking
What’s the first thing that comes to your mind when you hear "mocking"? Is it an expression when you laugh by making fun of something? Well, If yes, don’t worry you are not alone as I thought the same initially. But, with time I understood the meaning of mocking concerning testing. So, let’s unfold the…
-
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…
-
What is Mocha and keploy Testing?
Hello developers! I hope you are all enjoying the process of writing test cases. Let out a sigh of relief. No matter what type of application is being developed, it should always be tested before being released. Testing frameworks such as Jest, Jasmine, QUnit, Karma and Cypress are just a few of the many options…