12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- /*
- * 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\CodeSample;
- use PhpCsFixer\Tests\TestCase;
- /**
- * @author Andreas Möller <am@localheinz.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\FixerDefinition\CodeSample
- */
- final class CodeSampleTest extends TestCase
- {
- public function testConstructorSetsValues()
- {
- $code = '<php echo $foo;';
- $configuration = [
- 'foo' => 'bar',
- ];
- $codeSample = new CodeSample(
- $code,
- $configuration
- );
- $this->assertSame($code, $codeSample->getCode());
- $this->assertSame($configuration, $codeSample->getConfiguration());
- }
- public function testConfigurationDefaultsToNull()
- {
- $codeSample = new CodeSample('<php echo $foo;');
- $this->assertNull($codeSample->getConfiguration());
- }
- }
|