Skip to content

Create Your First Collection

A collection is your workspace for related manifests. Think of it as a test folder for one service or feature area.

In The Qaze App

  1. Open Testing Client.
  2. Create a new collection and choose a folder.
  3. Give it a clear name, for example Order Service Tests.

Qaze creates a collection.qaze.yaml file in that folder.

From The CLI (Optional)

bash
qaze tc init collection ./order-tests

This creates the same collection file.

What A Minimal Collection Looks Like

yaml
kind: Collection
version: collection.testingclient.qaze.app/v1
metadata:
  name: Order Service Tests
spec:
  globals: []

Practical Tips

  • Use one collection per bounded context (orders, billing, auth)
  • Keep collection names action-oriented, not generic
  • Commit collection.qaze.yaml to version control with your manifests

Next: Send Your First Message

Powered by Qaze