Skip to content

RESPONSE

Expected successful response payload.

When to use

  • Use for strict contract validation
  • Can appear multiple times for streaming expectations
  • Combine with with_asserts when you need payload + logical checks

Minimal example

php
--- RESPONSE with_asserts partial tolerance=0.1 unordered_arrays ---
{
  "status": "ok"
}

Inline options

  • with_asserts
  • partial
  • tolerance=<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 RESPONSE blocks, one expected message each
  • A single RESPONSE block 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 RESPONSE and ERROR in one file

Released under the MIT License.