org\bovigo\vfs\vfsStreamWrapperFileTestCase::setsPointerToStartWhenOpenedWithModeC PHP Метод

setsPointerToStartWhenOpenedWithModeC() публичный Метод

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