fix PhpUnit allowiing abstract testcases no more

This commit is contained in:
Fabio Ivona
2022-06-23 15:32:38 +02:00
parent 402995bf29
commit afedf83f5d

View File

@ -8,8 +8,15 @@ use PHPUnit\Framework\TestCase;
/** /**
* @internal * @internal
* @phpstan-ignore-next-line
*/ */
abstract class IgnorableTestCase extends TestCase class IgnorableTestCase extends TestCase
{ {
// .. /**
* @test
*/
public function fake(): void
{
self::markTestIncomplete();
}
} }