Unit testing

In this post, I’ll share stuffs related to Unit testing only. I’ll share examples of Unit testing in later posts.

What is Unit testing?

Unit means a small portion of your code. So Unit testing means test each small-small functionalities of an application. In procedural programming, unit is a whole module but in object oriented programming, it can be a class, an interface or even a method.

Read More