mirror of
https://github.com/pestphp/pest.git
synced 2026-03-05 23:37:22 +01:00
feat: adds fails
This commit is contained in:
@ -19,6 +19,7 @@ use Pest\Support\NullClosure;
|
||||
use Pest\Support\Str;
|
||||
use Pest\TestSuite;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use PHPUnit\Framework\AssertionFailedError;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
@ -57,6 +58,14 @@ final class TestCall
|
||||
$this->testSuite->beforeEach->get($this->filename)[0]($this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Asserts that the test fails with the given message.
|
||||
*/
|
||||
public function fails(?string $message = null): self
|
||||
{
|
||||
return $this->throws(AssertionFailedError::class, $message);
|
||||
}
|
||||
|
||||
/**
|
||||
* Asserts that the test throws the given `$exceptionClass` when called.
|
||||
*/
|
||||
|
||||
11
tests/Features/Fail.php
Normal file
11
tests/Features/Fail.php
Normal file
@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
use PHPUnit\Framework\AssertionFailedError;
|
||||
|
||||
it('may fail', function () {
|
||||
$this->fail();
|
||||
})->throws(AssertionFailedError::class);
|
||||
|
||||
it('may fail with the given message', function () {
|
||||
$this->fail('this is a failure');
|
||||
})->throws(AssertionFailedError::class, 'this is a failure');
|
||||
11
tests/Features/Fails.php
Normal file
11
tests/Features/Fails.php
Normal file
@ -0,0 +1,11 @@
|
||||
<?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');
|
||||
Reference in New Issue
Block a user