* 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\FixerDefinition; use PhpCsFixer\FixerDefinition\CodeSample; use PhpCsFixer\Tests\TestCase; /** * @author Andreas Möller * * @internal * * @covers \PhpCsFixer\FixerDefinition\CodeSample */ final class CodeSampleTest extends TestCase { public function testConstructorSetsValues(): void { $code = ' 'bar', ]; $codeSample = new CodeSample( $code, $configuration ); self::assertSame($code, $codeSample->getCode()); self::assertSame($configuration, $codeSample->getConfiguration()); } public function testConfigurationDefaultsToNull(): void { $codeSample = new CodeSample('getConfiguration()); } }