Files
pest/tests/Fixtures/Inheritance/Base/ExampleTest.php
2024-11-21 10:46:27 +00:00

14 lines
204 B
PHP

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