Unit Testing in Python

ZenvilaZenvila
3 min read

A Must-Know for Every Programmer

Unit testing is one of the most crucial topics that every programmer should be familiar with. It ensures the correctness of individual components of a program by testing them in isolation. In this blog, we will focus on unit testing in Python and explore five popular libraries that can be used for this purpose:

  • Pytest

  • PyUnit

  • Robot Framework

  • Splinter

  • Behave

Why Do We Need Unit Testing?

The primary purpose of unit testing is to validate that each part of your application works as expected. Let’s break it down with an example:

As a developer, you might build an application or write a piece of code for a specific task. Unit testing ensures that your application functions correctly from every perspective. By storing test cases in a separate test file and importing your code’s functions, you can efficiently run tests using a library like Pytest to verify the correctness of your code. The terminal output will indicate whether the tests pass or fail.

Unit Testing Frameworks in Different Programming Languages

Different programming languages have their own frameworks for unit testing. For Python, we’ll focus on using Pytest in this tutorial.


Technical Aspects: A Simple Example

Before diving into unit testing, ensure you have Python 3 and pip installed on your system. You can do this with the following command (for systems using Pacman package manager):

Note: The provided command is for Arch; you can adapt it according to your operating system.

sudo pacman -S python python-pip

Next, install the Pytest library for testing:

sudo pacman -S python-pytest

Step 1: Create a File for the Code to Be Tested

Let’s create a file named basicmath.py containing a simple function:

# basicmath.py

def div(a, b):
    """Divide two numbers."""
    return a / b

# Example usage
print(div(12, 4))

You can run this file to ensure it works as expected:

python3 basicmath.py

Step 2: Create a Test File

Now, create another file named test.py in the same directory. This file will contain test cases for the div function in basicmath.py.

# test.py

# Import the function to be tested
from basicmath import div

def test_div():
    """Test integer division."""
    assert div(4, 2) == 2

def test_div2():
    """Test another integer division."""
    assert div(6, 2) == 3

def test_for_float():
    """Test division resulting in a float."""
    assert div(1, 2) == 0.5

Step 3: Run the Tests

To run the test file, use the following command:

pytest test.py

Pytest will execute the test cases and display whether they pass or fail.

Pass :

Fail:

Here in this we can see one test case is not pass and is clearly mentioned

(test for float) is FAIL.


Key Points to Remember

  1. Always keep the test file in the same directory as the code file (or configure the test runner accordingly).

  2. Use descriptive function names and comments for better readability.

  3. Unit testing helps catch errors early, saving time and effort in the long run.

By following these steps, you can efficiently write and execute unit tests, ensuring your Python code is robust and reliable. Happy testing!

P.S. If you spot any mistakes, please don't hesitate to point them out. We're all here to learn together!

P.S.

If you spot any mistakes, please don't hesitate to point them out. We're all here to learn together! 😊

Haris
FAST (NUCES)
BS Computer Science | Class of 2027

📌 GitHub: https://github.com/Zenvila
📌 LinkedIn: https://www.linkedin.com/in/haris-shahzad-7b8746291/
📌 Member: COLAB (Research Lab)

0
Subscribe to my newsletter

Read articles from Zenvila directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Zenvila
Zenvila

I'm Haris aka Zen, currently in my 4th semester of Computer Science at FAST-NUCES and a member of COLAB (Research Lab) in Tier 3. I'm currently exploring AI/ML in its early stages, and also focusing on improving my problem-solving techniques. 🐧 Proud user of Arch Linux | Command line is my playground. I'm interested in Automation & Robotics Automation enthusiast on a mission to innovate! 🚀 Passionate about turning manual tasks into automated brilliance.