Enables integration

This commit is contained in:
Nuno Maduro
2022-09-15 12:07:32 +01:00
parent 99e607dcfb
commit 46ffdf9c7a
9 changed files with 134 additions and 80 deletions

View 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);
}
}

View File

@ -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
{
// ..
}