public function DirectoryIterationTestCase::provideSwitchWithExpectations in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/DirectoryIterationTestCase.php \org\bovigo\vfs\DirectoryIterationTestCase::provideSwitchWithExpectations()
Return value
array
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ DirectoryIterationTestCase.php, line 31
Class
- DirectoryIterationTestCase
- Test for directory iteration.
Namespace
org\bovigo\vfsCode
public function provideSwitchWithExpectations() {
return array(
array(
function () {
vfsStream::disableDotfiles();
},
array(
'bar',
'baz2',
),
),
array(
function () {
vfsStream::enableDotfiles();
},
array(
'.',
'..',
'bar',
'baz2',
),
),
);
}