self::
$tmpDir.\DIRECTORY_SEPARATOR.'qux_12_0.php',
self::
$tmpDir.\DIRECTORY_SEPARATOR.'qux_2_0.php',
self::
$tmpDir.\DIRECTORY_SEPARATOR.'zebulon.php',
];
$this->
assertIterator($expected,
$iterator);
} public function testInWithNonExistentDirectory() { $this->
expectException(DirectoryNotFoundException::
class);
$finder =
new Finder();
$finder->
in('foobar'
);
} public function testInWithNonExistentDirectoryLegacyException() { $this->
expectException(\InvalidArgumentException::
class);
$finder =
new Finder();
$finder->
in('foobar'
);
} public function testInWithGlob() {