public function vfsStreamWrapperFileTestCase::file_get_contentsNonReadableFile in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFileTestCase.php \org\bovigo\vfs\vfsStreamWrapperFileTestCase::file_get_contentsNonReadableFile()
@test @group permissions @group bug_15
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamWrapperFileTestCase.php, line 35
Class
Namespace
org\bovigo\vfsCode
public function file_get_contentsNonReadableFile() {
vfsStreamWrapper::register();
vfsStreamWrapper::setRoot(new vfsStreamDirectory('root'));
vfsStream::newFile('new.txt', 00)
->at(vfsStreamWrapper::getRoot())
->withContent('content');
$this
->assertEquals('', @file_get_contents(vfsStream::url('root/new.txt')));
}