Search⌘ K
AI Features

Creating Test Suites

Explore how to create custom test suites using the unittest module in Python. Understand how to combine test cases, run them with a test runner, and manage results to improve your automated testing skills.

We'll cover the following...

A test suite is just a collection of test cases, test suites or both. Most of the time, when we call unittest.main(), it will do the right thing and gather all the module’s test cases for us before executing them. But sometimes we want to be the one in control. In that circumstance, we can use the TestSuite ...