Пример #1
0
 /**
  * testParserStoreParsingExceptionsInReport
  *
  * @return void
  * @since 1.2.1
  */
 public function testParserStoreParsingExceptionsInReport()
 {
     $report = $this->getReportMock(0);
     $report->expects($this->once())->method('addError');
     $pdepend = $this->getPHPDependMock();
     $pdepend->expects($this->once())->method('getExceptions')->will($this->returnValue(array(new \PDepend\Source\Parser\InvalidStateException(42, __FILE__, 'foo'))));
     $parser = new PHP_PMD_Parser($pdepend);
     $parser->parse($report);
 }