Files
pest/src/TestCases/IgnorableTestCase.php
2022-06-23 15:32:38 +02:00

23 lines
298 B
PHP

<?php
declare(strict_types=1);
namespace Pest\TestCases;
use PHPUnit\Framework\TestCase;
/**
* @internal
* @phpstan-ignore-next-line
*/
class IgnorableTestCase extends TestCase
{
/**
* @test
*/
public function fake(): void
{
self::markTestIncomplete();
}
}