You are here

public function vfsStreamWrapperMkDirTestCase::rmdirCanNotRemoveFiles 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::rmdirCanNotRemoveFiles()

rmdir() can not remove files

@test

File

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

Class

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

Namespace

org\bovigo\vfs

Code

public function rmdirCanNotRemoveFiles() {
  $this
    ->assertFalse(rmdir($this->baz1URL));
  $this
    ->assertFalse(rmdir($this->baz2URL));
}