mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
Enables integration
This commit is contained in:
21
src/TestCases/IgnorableTest.php
Normal file
21
src/TestCases/IgnorableTest.php
Normal file
@ -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