You are here

public function vfsStreamTestCase::setupRegistersStreamWrapperAndCreatesRootDirectoryWithGivenNameAndDefaultPermissions in Zircon Profile 8

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

@test @group setup @since 0.7.0

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamTestCase.php, line 226

Class

vfsStreamTestCase
Test for org\bovigo\vfs\vfsStream.

Namespace

org\bovigo\vfs

Code

public function setupRegistersStreamWrapperAndCreatesRootDirectoryWithGivenNameAndDefaultPermissions() {
  $root = vfsStream::setup('foo');
  $this
    ->assertSame($root, vfsStreamWrapper::getRoot());
  $this
    ->assertEquals('foo', $root
    ->getName());
  $this
    ->assertEquals(0777, $root
    ->getPermissions());
}