feat: rewrites --dirty support

This commit is contained in:
Nuno Maduro
2023-01-10 22:23:52 +00:00
parent f6676118ac
commit 15931e2418
6 changed files with 102 additions and 84 deletions

View File

@ -6,5 +6,8 @@ namespace Pest\Contracts;
interface TestCaseFilter
{
public function canLoad(string $suiteClassFile): bool;
/**
* Whether the test case is accepted.
*/
public function accept(string $testCaseFilename): bool;
}