mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 08:17:22 +01:00
feat(describe): improves logic around hooks
This commit is contained in:
@ -6,7 +6,7 @@ namespace Pest\Repositories;
|
||||
|
||||
use Closure;
|
||||
use Mockery;
|
||||
use Pest\Exceptions\AfterEachAlreadyExist;
|
||||
use Pest\PendingCalls\AfterEachCall;
|
||||
use Pest\Support\ChainableClosure;
|
||||
use Pest\Support\NullClosure;
|
||||
|
||||
@ -23,13 +23,18 @@ final class AfterEachRepository
|
||||
/**
|
||||
* Sets a after each closure.
|
||||
*/
|
||||
public function set(string $filename, Closure $closure): void
|
||||
public function set(string $filename, AfterEachCall $afterEachCall, Closure $afterEachTestCase): void
|
||||
{
|
||||
if (array_key_exists($filename, $this->state)) {
|
||||
throw new AfterEachAlreadyExist($filename);
|
||||
$fromAfterEachTestCase = $this->state[$filename];
|
||||
|
||||
$afterEachTestCase = ChainableClosure::from($fromAfterEachTestCase, $afterEachTestCase)
|
||||
->bindTo($afterEachCall, $afterEachCall::class);
|
||||
}
|
||||
|
||||
$this->state[$filename] = $closure;
|
||||
assert($afterEachTestCase instanceof Closure);
|
||||
|
||||
$this->state[$filename] = $afterEachTestCase;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user