You are here

public function FinderTest::testCountWithoutIn in Database Sanitize 7

@expectedException \LogicException

File

vendor/symfony/finder/Tests/FinderTest.php, line 460

Class

FinderTest

Namespace

Symfony\Component\Finder\Tests

Code

public function testCountWithoutIn() {
  $finder = Finder::create()
    ->files();
  \count($finder);
}