Files
pest/src/TestCaseMethodFilters/NotesTestCaseFilter.php
T
2026-08-07 14:52:56 +01:00

17 lines
349 B
PHP

<?php
declare(strict_types=1);
namespace Pest\TestCaseMethodFilters;
use Pest\Contracts\TestCaseMethodFilter;
use Pest\Factories\TestCaseMethodFactory;
final readonly class NotesTestCaseFilter implements TestCaseMethodFilter
{
public function accept(TestCaseMethodFactory $factory): bool
{
return $factory->notes !== [];
}
}