diff --git a/src/TestCases/IgnorableTestCase.php b/src/TestCases/IgnorableTestCase.php index a2e9f5e9..dfe26889 100644 --- a/src/TestCases/IgnorableTestCase.php +++ b/src/TestCases/IgnorableTestCase.php @@ -8,8 +8,15 @@ use PHPUnit\Framework\TestCase; /** * @internal + * @phpstan-ignore-next-line */ -abstract class IgnorableTestCase extends TestCase +class IgnorableTestCase extends TestCase { - // .. + /** + * @test + */ + public function fake(): void + { + self::markTestIncomplete(); + } }