* 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\Console\Command; use PhpCsFixer\Console\Command\DescribeNameNotFoundException; use PhpCsFixer\Tests\TestCase; /** * @author Andreas Möller * * @internal * * @covers \PhpCsFixer\Console\Command\DescribeNameNotFoundException */ final class DescribeNameNotFoundExceptionTest extends TestCase { public function testConstructorSetsValues(): void { $name = 'Peter'; $type = 'weird'; $exception = new DescribeNameNotFoundException( $name, $type ); self::assertSame($name, $exception->getName()); self::assertSame($type, $exception->getType()); } }