Building simple test cases in Python using unittest library

Introduction to Python test cases: In Python code development, building test cases in another aspect of creating quality and robust softwares. In this article I will show step by step of the bare minimum requirement to build the same. Python has quite a few number of libaries for building test cases like unittest, pytest  and mock library. The Unittest Library of Python: The Unittest library of python is a standard library that comes in bundled with every installation. It relies heavily on object oriented paradigm. Therefore, expect many objects, classes and its related terms. However, we can build test case

Read More