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
- Open Testing Client.
- Create a new collection and choose a folder.
- 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-testsThis 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.yamlto version control with your manifests
Next: Send Your First Message