1--TEST-- 2SPL: Spl File Info test getOwner 3--CREDITS-- 4Cesare D'Amico <cesare.damico@gruppovolta.it> 5Andrea Giorgini <agiorg@gmail.com> 6Filippo De Santis <fd@ideato.it> 7Daniel Londero <daniel.londero@gmail.com> 8Francesco Trucchia <ft@ideato.it> 9Jacopo Romei <jacopo@sviluppoagile.it> 10#Test Fest Cesena (Italy) on 2009-06-20 11--SKIPIF-- 12<?php 13if (substr(PHP_OS, 0, 3) == 'WIN') die("skip this test not for Windows platforms"); 14?> 15--FILE-- 16<?php 17 18//file 19$fileInfo = new SplFileInfo('not_existing'); 20var_dump($fileInfo->getOwner()); 21?> 22 23--EXPECTF-- 24Fatal error: Uncaught exception 'RuntimeException' with message 'SplFileInfo::getOwner(): stat failed for not_existing' in %s 25Stack trace: 26#0 %s: SplFileInfo->getOwner() 27#1 {main} 28 thrown in %s on line %d 29