123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?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;
- use PhpCsFixer\Tests\Fixtures\Test\AbstractFixerTest\UnconfigurableFixer;
- use PhpCsFixer\WhitespacesFixerConfig;
- /**
- * @internal
- *
- * @covers \PhpCsFixer\AbstractFixer
- */
- final class AbstractFixerTest extends TestCase
- {
- public function testConfigureUnconfigurable(): void
- {
- $fixer = new UnconfigurableFixer();
- static::assertSame(0, $fixer->getPriority());
- static::assertSame('unconfigurable', $fixer->getName());
- $this->expectException(\LogicException::class);
- $this->expectExceptionMessage('Cannot configure using Abstract parent, child not implementing "PhpCsFixer\Fixer\ConfigurableFixerInterface".');
- $fixer->configure(['foo' => 'bar']);
- }
- public function testGetConfigurationDefinitionUnconfigurable(): void
- {
- $fixer = new UnconfigurableFixer();
- $this->expectException(\LogicException::class);
- $this->expectExceptionMessage(sprintf('Cannot get configuration definition using Abstract parent, child "%s" not implementing "PhpCsFixer\Fixer\ConfigurableFixerInterface".', \get_class($fixer)));
- $fixer->getConfigurationDefinition();
- }
- public function testCreateConfigurationDefinitionUnconfigurable(): void
- {
- $fixer = new UnconfigurableFixer();
- $this->expectException(\LogicException::class);
- $this->expectExceptionMessage('Cannot create configuration definition using Abstract parent, child not implementing "PhpCsFixer\Fixer\ConfigurableFixerInterface".');
- $fixer->doSomethingWithCreateConfigDefinition();
- }
- public function testSetWhitespacesConfigUnconfigurable(): void
- {
- $fixer = new UnconfigurableFixer();
- $this->expectException(\LogicException::class);
- $this->expectExceptionMessage('Cannot run method for class not implementing "PhpCsFixer\Fixer\WhitespacesAwareFixerInterface".');
- $fixer->setWhitespacesConfig(new WhitespacesFixerConfig());
- }
- }
|