public function vfsStreamWrapperMkDirTestCase::mkdirOnFileReturnsFalse 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::mkdirOnFileReturnsFalse()
trying to create a subdirectory of a file should not work
@test
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamWrapperDirTestCase.php, line 107
Class
- vfsStreamWrapperMkDirTestCase
- Test for org\bovigo\vfs\vfsStreamWrapper around mkdir().
Namespace
org\bovigo\vfsCode
public function mkdirOnFileReturnsFalse() {
$this
->assertFalse(mkdir($this->baz1URL . '/another/more', 0777, true));
}