mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
22 lines
297 B
PHP
22 lines
297 B
PHP
<?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);
|
|
}
|
|
}
|