Example #1
0
 /**
  * Tests that the logger returns the expected set of analyzers.
  *
  * @return void
  */
 public function testReturnsExceptedAnalyzers()
 {
     $logger = new PHP_Depend_Log_Summary_Xml();
     $actual = $logger->getAcceptedAnalyzers();
     $exptected = array('PHP_Depend_Metrics_NodeAwareI', 'PHP_Depend_Metrics_ProjectAwareI');
     $this->assertEquals($exptected, $actual);
 }