12345678910111213141516171819202122232425262728293031323334 |
- <?php
- declare(strict_types=1);
- namespace PhpCsFixer\Tests;
- use PhpCsFixer\PregException;
- final class PregExceptionTest extends TestCase
- {
- public function testIsRuntimeException(): void
- {
- $exception = new PregException();
- self::assertInstanceOf(\RuntimeException::class, $exception);
- }
- }
|