You are here

public function vfsStreamUmaskTestCase::changingUmaskSettingReturnsOldUmaskSetting in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamUmaskTestCase.php \org\bovigo\vfs\vfsStreamUmaskTestCase::changingUmaskSettingReturnsOldUmaskSetting()

@test

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamUmaskTestCase.php, line 52

Class

vfsStreamUmaskTestCase
Test for umask settings.

Namespace

org\bovigo\vfs

Code

public function changingUmaskSettingReturnsOldUmaskSetting() {
  $this
    ->assertEquals(00, vfsStream::umask(022));
  $this
    ->assertEquals(022, vfsStream::umask());
}