FinderTest.php 789 B

1234567891011121314151617181920212223242526272829303132
  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;
  12. use PhpCsFixer\Finder;
  13. /**
  14. * @internal
  15. *
  16. * @covers \PhpCsFixer\Finder
  17. */
  18. final class FinderTest extends TestCase
  19. {
  20. public function testThatDefaultFinderDoesNotSpecifyAnyDirectory()
  21. {
  22. $this->expectException(\LogicException::class);
  23. $this->expectExceptionMessageRegExp('/^You must call (?:the in\(\) method)|(?:one of in\(\) or append\(\)) methods before iterating over a Finder\.$/');
  24. $finder = Finder::create();
  25. $finder->getIterator();
  26. }
  27. }