You are here

public function FinderTest::testHasResults in Database Sanitize 7

File

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

Class

FinderTest

Namespace

Symfony\Component\Finder\Tests

Code

public function testHasResults() {
  $finder = $this
    ->buildFinder();
  $finder
    ->in(__DIR__);
  $this
    ->assertTrue($finder
    ->hasResults());
}