public function FinderTest::testSortByChangedTime in Database Sanitize 7
File
- vendor/
symfony/ finder/ Tests/ FinderTest.php, line 238
Class
Namespace
Symfony\Component\Finder\TestsCode
public function testSortByChangedTime() {
$finder = $this
->buildFinder();
$this
->assertSame($finder, $finder
->sortByChangedTime());
$this
->assertIterator($this
->toAbsolute(array(
'toto',
'test.py',
'test.php',
'foo/bar.tmp',
'foo',
'foo bar',
)), $finder
->in(self::$tmpDir)
->getIterator());
}