/**
  * @expectedException \Exception
  */
 public function testFindLayoutIdException()
 {
     $file = PHPPRESENTATION_TESTS_BASE_DIR . '/resources/files/Sample_00_01.pptx';
     $templateBased = new TemplateBased($file);
     $name = 'Invalid';
     $templateBased->findLayoutId($name);
 }