fileSupportsUnserializePhpPresentation() public method

Does a file support UnserializePhpPresentation ?
public fileSupportsUnserializePhpPresentation ( string $pFilename = '' ) : boolean
$pFilename string
return boolean
 /**
  * @expectedException \Exception
  * @expectedExceptionMessage Could not open  for reading! File does not exist.
  */
 public function testFileSupportsNotExists()
 {
     $object = new ODPresentation();
     $object->fileSupportsUnserializePhpPresentation('');
 }