What’s in a Suite
A suite is a saved list of items, where each item specifies:- Scenario — Which test plan to run
- Build — Which version of your game
- Device — Which device to run on
Creating a Suite
- Give the suite a name (e.g., “Nightly Regression”, “Smoke Tests - Android”)
- Add items by selecting scenario + build + device combinations
- Save the suite for repeated use
Executing a Suite
When you execute a suite, Duzz creates one run for every item in the suite. All runs start in parallel. Each execution is tracked separately, so you can compare results across executions — for example, how this week’s nightly regression compares to last week’s.Trigger Types
Suites can be triggered in different ways:| Trigger | How it works |
|---|---|
| Manual | You click “Execute” in the UI |
| Build upload | Automatically runs when a new build is uploaded to the project |
| Schedule | Runs on a recurring schedule |
Reviewing Results
After a suite execution completes, you get an overview of all runs:- Which runs passed and which failed
- Checkpoint progress for each run
- Links to individual run results for deeper investigation
When to Use Suites
- Regression testing — Run your full test suite against every new build
- Cross-device testing — Verify the same scenarios work across different devices and platforms
- Release gates — Run a defined set of tests before every release
- Nightly runs — Schedule automated test runs overnight
Quick Reference
| Concept | What it is |
|---|---|
| Suite | A saved collection of scenario + build + device combinations |
| Item | One entry in the suite (one scenario, one build, one device) |
| Execution | One batch run of the entire suite — creates a run per item |
| Trigger | How the execution starts (manual, build upload, or schedule) |