1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- declare(strict_types=1);
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\FixerDefinition;
- use PhpCsFixer\FixerDefinition\CodeSampleInterface;
- use PhpCsFixer\FixerDefinition\FixerDefinition;
- use PhpCsFixer\Tests\TestCase;
- /**
- * @internal
- *
- * @covers \PhpCsFixer\FixerDefinition\FixerDefinition
- */
- final class FixerDefinitionTest extends TestCase
- {
- public function testGetSummary(): void
- {
- $definition = new FixerDefinition('Foo', []);
- static::assertSame('Foo', $definition->getSummary());
- }
- public function testGetCodeSamples(): void
- {
- $samples = [
- $this->prophesize(CodeSampleInterface::class)->reveal(),
- $this->prophesize(CodeSampleInterface::class)->reveal(),
- ];
- $definition = new FixerDefinition('', $samples);
- static::assertSame($samples, $definition->getCodeSamples());
- }
- public function testGetDescription(): void
- {
- $definition = new FixerDefinition('', []);
- static::assertNull($definition->getDescription());
- $definition = new FixerDefinition('', [], 'Foo');
- static::assertSame('Foo', $definition->getDescription());
- }
- public function testGetRiskyDescription(): void
- {
- $definition = new FixerDefinition('', []);
- static::assertNull($definition->getRiskyDescription());
- $definition = new FixerDefinition('', [], null, 'Foo');
- static::assertSame('Foo', $definition->getRiskyDescription());
- }
- }
|