Files
pest/src/Contracts/TestCaseFilter.php
2023-01-10 22:23:52 +00:00

14 lines
207 B
PHP

<?php
declare(strict_types=1);
namespace Pest\Contracts;
interface TestCaseFilter
{
/**
* Whether the test case is accepted.
*/
public function accept(string $testCaseFilename): bool;
}