public function FinderTest::testNoResults in Database Sanitize 7
File
- vendor/
symfony/ finder/ Tests/ FinderTest.php, line 473
Class
Namespace
Symfony\Component\Finder\TestsCode
public function testNoResults() {
$finder = $this
->buildFinder();
$finder
->in(__DIR__)
->name('DoesNotExist');
$this
->assertFalse($finder
->hasResults());
}