* Dariusz Rumiński * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace PhpCsFixer\Tests\Linter; use PhpCsFixer\Linter\UnavailableLinterException; use PhpCsFixer\Tests\TestCase; /** * @author Andreas Möller * * @internal * * @covers \PhpCsFixer\Linter\UnavailableLinterException */ final class UnavailableLinterExceptionTest extends TestCase { public function testConstructorSetsValues(): void { $message = 'Never heard of that one, sorry!'; $code = 9_001; $previous = new \RuntimeException(); $exception = new UnavailableLinterException( $message, $code, $previous ); self::assertSame($message, $exception->getMessage()); self::assertSame($code, $exception->getCode()); self::assertSame($previous, $exception->getPrevious()); } }