mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
fix PhpUnit allowiing abstract testcases no more
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user