NullOutputTest.php 701 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /*
  3. * This file is part of PHP CS Fixer.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. * Dariusz Rumiński <dariusz.ruminski@gmail.com>
  7. *
  8. * This source file is subject to the MIT license that is bundled
  9. * with this source code in the file LICENSE.
  10. */
  11. namespace PhpCsFixer\Tests\Console\Output;
  12. use PhpCsFixer\Console\Output\NullOutput;
  13. use PhpCsFixer\Tests\TestCase;
  14. /**
  15. * @author SpacePossum
  16. *
  17. * @internal
  18. *
  19. * @covers \PhpCsFixer\Console\Output\NullOutput
  20. */
  21. final class NullOutputTest extends TestCase
  22. {
  23. /**
  24. * @doesNotPerformAssertions
  25. */
  26. public function testNullOutput()
  27. {
  28. $output = new NullOutput();
  29. $output->printLegend();
  30. }
  31. }