Files
pest/tests/PHPUnit/CustomTestCase/UsesPerDirectory.php
T
2026-07-18 01:10:01 +01:00

10 lines
198 B
PHP

<?php
use Tests\CustomTestCase\CustomTestCase;
pest()->use(CustomTestCase::class)->in(__DIR__);
test('closure was bound to CustomTestCase', function (): void {
$this->assertCustomTrue();
});