public function FinderTest::testAppendDoesNotRequireIn in Database Sanitize 7
File
- vendor/
symfony/ finder/ Tests/ FinderTest.php, line 423
Class
Namespace
Symfony\Component\Finder\TestsCode
public function testAppendDoesNotRequireIn() {
$finder = $this
->buildFinder();
$finder
->in(self::$tmpDir . \DIRECTORY_SEPARATOR . 'foo');
$finder1 = Finder::create()
->append($finder);
$this
->assertIterator(iterator_to_array($finder
->getIterator()), $finder1
->getIterator());
}