You are here

public function vfsStreamWrapperFlockTestCase::fileIsNotLockedByDefault in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFlockTestCase.php \org\bovigo\vfs\vfsStreamWrapperFlockTestCase::fileIsNotLockedByDefault()

@test

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFlockTestCase.php, line 40

Class

vfsStreamWrapperFlockTestCase
Test for flock() implementation.

Namespace

org\bovigo\vfs

Code

public function fileIsNotLockedByDefault() {
  $this
    ->assertFalse(vfsStream::newFile('foo.txt')
    ->isLocked());
}