ISTQB Mock App

Test Suite

A test suite is a collection of related test cases that are executed together to verify a specific feature, component, or system.

Official definition
ISTQB Official Glossary Definition
A set of test scripts or test procedures to be executed in a specific test run.

(Definition reproduced from the ISTQB Glossary. Copyright belongs to ISTQB.)

View the complete ISTQB Glossary

What is Test Suite?

Test suites organize test cases into logical groups, making test execution, maintenance, and reporting more efficient.

Logical grouping: Related tests are executed together.

Reusable collection: Suites support repeated execution.

Automation friendly: Commonly used in automated testing.

Real World Example

A team has hundreds of automated test cases for an e-commerce site covering search, cart, checkout, and account management, and every single commit currently triggers all of them, taking three hours and blocking developers from merging quickly.

Not every code change actually touches every area — a change to the search algorithm has no bearing on account settings — but running everything indiscriminately every time reflects no deliberate strategy for what a specific run actually needs to verify.

The tester organizes the test cases into purposeful Test suites: a fast smoke suite of the twenty most critical cases run on every commit, a checkout-regression suite run specifically when payment-related code changes, and a full nightly suite covering everything.

Developers get feedback from the smoke suite in five minutes instead of three hours, while the full suite still runs safely overnight — a Test suite isn't just a folder of test cases, it's a deliberately assembled set matched to what a specific test run needs to verify.

Practice Questions

Question 1

A team runs all 300 of its automated test cases on every single commit, taking 3 hours, even though most commits only touch one small area of the app. What change would MOST directly address this?

Question 2

Which of the following BEST describes a test suite?

Test your knowledge with real ISTQB-style questions

You’ve learned Test Suite. Test your understanding with topic-specific questions in our Mock Exams.

Go to Mock Exams