mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
snapshots code cleanup
This commit is contained in:
@ -11,6 +11,7 @@ use Pest\Repositories\BeforeAllRepository;
|
||||
use Pest\Repositories\BeforeEachRepository;
|
||||
use Pest\Repositories\SnapshotRepository;
|
||||
use Pest\Repositories\TestRepository;
|
||||
use Pest\Support\Str;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
@ -105,4 +106,21 @@ final class TestSuite
|
||||
|
||||
return self::$instance;
|
||||
}
|
||||
|
||||
public function getFilename(): string
|
||||
{
|
||||
assert($this->test instanceof TestCase);
|
||||
|
||||
return (fn () => self::$__filename)->call($this->test, $this->test::class); // @phpstan-ignore-line
|
||||
}
|
||||
|
||||
public function getDescription(): string
|
||||
{
|
||||
assert($this->test instanceof TestCase);
|
||||
|
||||
$description = str_replace('__pest_evaluable_', '', $this->test->name());
|
||||
$datasetAsString = str_replace('__pest_evaluable_', '', Str::evaluable($this->test->dataSetAsStringWithData()));
|
||||
|
||||
return str_replace(' ', '_', $description.$datasetAsString);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user