RESPONSE
Expected successful response payload.
When to use
- Use for strict contract validation
- Can appear multiple times for streaming expectations
- Combine with
with_assertswhen you need payload + logical checks
Minimal example
php
--- RESPONSE with_asserts partial tolerance=0.1 unordered_arrays ---
{
"status": "ok"
}Inline options
with_assertspartialtolerance=<number>redact=["field1","field2"]unordered_arrays
Multiple messages (server/bidi streaming)
For server- or bidi-streaming methods that expect several messages, either form works:
- Multiple
RESPONSEblocks, one expected message each - A single
RESPONSEblock containing several self-delimiting JSON values, one per line — each matched against one streamed message, in order:
php
--- RESPONSE ---
{ "index": 0 }
{ "index": 1 }
{ "index": 2 }Rules
- Do not combine
RESPONSEandERRORin one file