mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
16 lines
269 B
PHP
16 lines
269 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Contracts;
|
|
|
|
use Pest\Factories\TestCaseMethodFactory;
|
|
|
|
interface TestCaseMethodFilter
|
|
{
|
|
/**
|
|
* Whether the test case method is accepted.
|
|
*/
|
|
public function accept(TestCaseMethodFactory $factory): bool;
|
|
}
|