You are here

public function vfsStreamWrapperFileTestCase::truncatesFileWhenOpenedWithModeW in Zircon Profile 8

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

@test @group issue_30

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFileTestCase.php, line 322

Class

vfsStreamWrapperFileTestCase
Test for org\bovigo\vfs\vfsStreamWrapper.

Namespace

org\bovigo\vfs

Code

public function truncatesFileWhenOpenedWithModeW() {
  $vfsFile = vfsStream::url('foo/overwrite.txt');
  file_put_contents($vfsFile, 'test');
  $fp = fopen($vfsFile, 'wb');
  $this
    ->assertEquals('', file_get_contents($vfsFile));
  fclose($fp);
}