mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
22 lines
427 B
PHP
22 lines
427 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Pest\Contracts;
|
|
|
|
if (interface_exists(\NunoMaduro\Collision\Contracts\Adapters\Phpunit\HasPrintableTestCaseName::class)) {
|
|
/**
|
|
* @internal
|
|
*/
|
|
interface HasPrintableTestCaseName extends \NunoMaduro\Collision\Contracts\Adapters\Phpunit\HasPrintableTestCaseName
|
|
{
|
|
}
|
|
} else {
|
|
/**
|
|
* @internal
|
|
*/
|
|
interface HasPrintableTestCaseName
|
|
{
|
|
}
|
|
}
|