mirror of
https://github.com/pestphp/pest.git
synced 2026-03-11 02:07:23 +01:00
10 lines
192 B
PHP
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();
|
|
});
|