mirror of
https://github.com/pestphp/pest.git
synced 2026-03-05 23:37:22 +01:00
10 lines
191 B
PHP
10 lines
191 B
PHP
<?php
|
|
|
|
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');
|