Files
pest/tests/Fixtures/Suites/DatasetClosureThrows.php
T
2026-08-04 20:19:12 +01:00

10 lines
169 B
PHP

<?php
dataset('throws', function () {
throw new RuntimeException('boom from dataset');
});
it('x', function ($a) {
expect($a)->toBeTrue();
})->with('throws');