/**
  * Test get PHPPowerPoint exception
  *
  * @expectedException Exception
  * @expectedExceptionMessage No PHPPowerPoint assigned.
  */
 public function testGetPHPPowerPointException()
 {
     $object = new ODPresentation();
     $object->getPHPPowerPoint();
 }