LinterTest.php 766 B

1234567891011121314151617181920212223242526272829303132333435363738
  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\Linter;
  12. use PhpCsFixer\Linter\Linter;
  13. /**
  14. * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
  15. *
  16. * @internal
  17. *
  18. * @covers \PhpCsFixer\Linter\Linter
  19. */
  20. final class LinterTest extends AbstractLinterTestCase
  21. {
  22. public function testIsAsync()
  23. {
  24. $this->assertSame(!defined('TOKEN_PARSE'), $this->createLinter()->isAsync());
  25. }
  26. /**
  27. * {@inheritdoc}
  28. */
  29. protected function createLinter()
  30. {
  31. return new Linter();
  32. }
  33. }