save() public method

Save PhpPresentation to file
public save ( string $pFilename )
$pFilename string
 /**
  * Test get PhpPresentation exception
  *
  * @expectedException Exception
  * @expectedExceptionMessage Filename is empty
  */
 public function testSaveEmpty()
 {
     $object = new ODPresentation();
     $object->save('');
 }