Files
pest/tests/Fixtures/Inheritance/Base/ExampleTest.php
T
2026-07-18 01:10:01 +01:00

16 lines
236 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Fixtures\Inheritance\Base;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
public function test_example(): void
{
$this->markTestSkipped();
}
}