mirror of
https://github.com/pestphp/pest.git
synced 2026-03-10 09:47:23 +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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user