Files
pest/tests/Fixtures/Inheritance/Base/ExampleTest.php

14 lines
203 B
PHP

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