You are here

public function vfsStreamWrapperMkDirTestCase::canNotUnlinkDirectoryWithoutRoot in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperDirTestCase.php \org\bovigo\vfs\vfsStreamWrapperMkDirTestCase::canNotUnlinkDirectoryWithoutRoot()

can not unlink without root

@test

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperDirTestCase.php, line 287

Class

vfsStreamWrapperMkDirTestCase
Test for org\bovigo\vfs\vfsStreamWrapper around mkdir().

Namespace

org\bovigo\vfs

Code

public function canNotUnlinkDirectoryWithoutRoot() {
  vfsStreamWrapper::register();
  $this
    ->assertFalse(@rmdir(vfsStream::url('foo')));
}