public function vfsStreamWrapperMkDirTestCase::rmdirCanNotRemoveNonExistingDirectory 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::rmdirCanNotRemoveNonExistingDirectory()
rmdir() can not remove a non-existing directory
@test
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamWrapperDirTestCase.php, line 309
Class
- vfsStreamWrapperMkDirTestCase
- Test for org\bovigo\vfs\vfsStreamWrapper around mkdir().
Namespace
org\bovigo\vfsCode
public function rmdirCanNotRemoveNonExistingDirectory() {
$this
->assertFalse(rmdir($this->fooURL . '/another'));
}