Go back to projects
Spec vs. Reality
A contract, a request budget, and a clock. Find what breaks it - then prove it.
The Contract
POST /users
| Field | Required | Type | Rule |
|---|---|---|---|
| name | Yes | string | non-empty |
| Yes | string | valid email | |
| age | Yes | integer | ≥ 18 |
Expected responses: 201 Created · 400 Bad Request · 409 Conflict
Budget: 3:00 on the clock, 15 requests. Reporting a finding doesn't cost a request.
Contract (reference)
| Field | Required | Type | Rule |
|---|---|---|---|
| name | Yes | string | non-empty |
| Yes | string | valid email | |
| age | Yes | integer | ≥ 18 |
Build Request
POST /users
Response
Send a request to see the response here.
Request History
No requests sent yet.
Investigation Complete
Good testing isn't finding everything. It's finding the important things with the evidence to prove them.