Expect Assertion
The Expect assertion evaluates a PHP expression that must be truthy.
Syntax
markdown
```php
$result = array_sum([1, 2, 3, 4, 5]);
```
<!-- doctest-expect: $result === 15 -->How It Works
- The code block executes
- After the code runs, the expression is evaluated with
(bool)(expression) - If the expression evaluates to
true, the assertion passes - If it evaluates to
false, the assertion fails with the expression shown in the error
Expression Scope
The expression has access to all variables defined in the code block:
php
$items = [1, 2, 3];
$count = count($items);
$sum = array_sum($items);Multiple Expects
You can have multiple Expect assertions on the same block:
php
$name = 'DocTest';
$version = 1;When to Use
- When you need to verify a computed value without printing it
- When the assertion involves a comparison or function call
- When documenting APIs where return values matter more than printed output
Tips
- The expression must be a valid PHP expression
- Use strict comparisons (
===) when possible - You can call functions in the expression:
<!-- doctest-expect: is_array($result) -->