Files
pest/tests/Unit/Support/Backtrace.php
T
2026-07-18 01:10:01 +01:00

10 lines
180 B
PHP

<?php
use Pest\Support\Backtrace;
it('gets file name from called file', function (): void {
$a = (fn (): string => Backtrace::file());
expect($a())->toBe(__FILE__);
});