You are here

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

@test @group issue_28

File

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

Class

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

Namespace

org\bovigo\vfs

Code

public function mkDirShouldNotOverwriteExistingDirectories() {
  vfsStream::setup('root');
  $dir = vfsStream::url('root/dir');
  $this
    ->assertTrue(mkdir($dir));
  $this
    ->assertFalse(@mkdir($dir));
}