public function vfsStreamUmaskTestCase::createFileWithDefaultUmaskSetting in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamUmaskTestCase.php \org\bovigo\vfs\vfsStreamUmaskTestCase::createFileWithDefaultUmaskSetting()
@test
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamUmaskTestCase.php, line 65
Class
- vfsStreamUmaskTestCase
- Test for umask settings.
Namespace
org\bovigo\vfsCode
public function createFileWithDefaultUmaskSetting() {
$file = new vfsStreamFile('foo');
$this
->assertEquals(0666, $file
->getPermissions());
}