public function vfsStreamWrapperMkDirTestCase::rmdirCanNotRemoveNonEmptyDirectory in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperDirTestCase.php \org\bovigo\vfs\vfsStreamWrapperMkDirTestCase::rmdirCanNotRemoveNonEmptyDirectory()
rmdir() can not remove non-empty directories
@test
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamWrapperDirTestCase.php, line 319
Class
- vfsStreamWrapperMkDirTestCase
- Test for org\bovigo\vfs\vfsStreamWrapper around mkdir().
Namespace
org\bovigo\vfsCode
public function rmdirCanNotRemoveNonEmptyDirectory() {
$this
->assertFalse(rmdir($this->fooURL));
$this
->assertFalse(rmdir($this->barURL));
}