Inheritance: implements Psr\Log\LoggerAwareInterface
 /**
  * @covers PHPExiftool\Exiftool::executeCommand
  * @covers \PHPExiftool\Exception\RuntimeException
  * @expectedException \PHPExiftool\Exception\RuntimeException
  */
 public function testExecuteCommandFailed()
 {
     $exiftool = new Exiftool($this->getlogger());
     $exiftool->executeCommand('-prout');
 }