CodeSampleTest.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4. * This file is part of PHP CS Fixer.
  5. *
  6. * (c) Fabien Potencier <fabien@symfony.com>
  7. * Dariusz Rumiński <dariusz.ruminski@gmail.com>
  8. *
  9. * This source file is subject to the MIT license that is bundled
  10. * with this source code in the file LICENSE.
  11. */
  12. namespace PhpCsFixer\Tests\FixerDefinition;
  13. use PhpCsFixer\FixerDefinition\CodeSample;
  14. use PhpCsFixer\Tests\TestCase;
  15. /**
  16. * @author Andreas Möller <am@localheinz.com>
  17. *
  18. * @internal
  19. *
  20. * @covers \PhpCsFixer\FixerDefinition\CodeSample
  21. */
  22. final class CodeSampleTest extends TestCase
  23. {
  24. public function testConstructorSetsValues(): void
  25. {
  26. $code = '<php echo $foo;';
  27. $configuration = [
  28. 'foo' => 'bar',
  29. ];
  30. $codeSample = new CodeSample(
  31. $code,
  32. $configuration
  33. );
  34. self::assertSame($code, $codeSample->getCode());
  35. self::assertSame($configuration, $codeSample->getConfiguration());
  36. }
  37. public function testConfigurationDefaultsToNull(): void
  38. {
  39. $codeSample = new CodeSample('<php echo $foo;');
  40. self::assertNull($codeSample->getConfiguration());
  41. }
  42. }