mirror of
https://github.com/pestphp/pest.git
synced 2026-07-24 02:20:03 +02:00
Enables integration
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Pest\TestCases;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
final class IgnorableTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* Creates a dummy assertion.
|
||||
*/
|
||||
public function testIgnorable(): void
|
||||
{
|
||||
self::assertTrue(true);
|
||||
}
|
||||
}
|
||||
@@ -1,16 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Pest\TestCases;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
* @phpstan-ignore-next-line
|
||||
*/
|
||||
class IgnorableTestCase extends TestCase
|
||||
{
|
||||
// ..
|
||||
}
|
||||
Reference in New Issue
Block a user