org\bovigo\vfs\vfsStreamWrapperFileTestCase::canNotReadFromWriteOnlyFileWithModeW PHP Method

canNotReadFromWriteOnlyFileWithModeW() public method

    public function canNotReadFromWriteOnlyFileWithModeW()
    {
        $fp = fopen($this->baz2URL, 'wb');
        $this->assertEquals('', fread($fp, 4096));
        $this->assertEquals(3, fwrite($fp, 'foo'));
        fseek($fp, 0);
        $this->assertEquals('', fread($fp, 4096));
        fclose($fp);
        $this->assertEquals('foo', file_get_contents($this->baz2URL));
    }