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