public function vfsStreamWrapperMkDirTestCase::rmdirCanNotRemoveFiles in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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\vfsCode
public function rmdirCanNotRemoveFiles() {
$this
->assertFalse(rmdir($this->baz1URL));
$this
->assertFalse(rmdir($this->baz2URL));
}