Files
pest/tests/Features/Fails.php
2023-12-28 10:31:39 +00:00

12 lines
236 B
PHP

<?php
use PHPUnit\Framework\AssertionFailedError;
it('may fail', function () {
$this->fail();
})->fails();
it('may fail with the given message', function () {
$this->fail('this is a failure');
})->fails('this is a failure');