Files
pest/tests/PHPUnit/CustomTestCase/UsesPerDirectory.php
2026-03-10 21:06:28 +00:00

10 lines
192 B
PHP

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