org\bovigo\vfs\vfsStreamWrapperMkDirTestCase::mkdirNonRecursivelyDifferentPermissions PHP 메소드

mkdirNonRecursivelyDifferentPermissions() 공개 메소드

assert that mkdir() creates the correct directory structure
    public function mkdirNonRecursivelyDifferentPermissions()
    {
        $this->assertTrue(mkdir($this->fooURL . '/another', 0755));
        $this->assertEquals(0755, $this->foo->getChild('another')->getPermissions());
    }