getAcceptedAnalyzers() public method

Returns an array with accepted analyzer types. These types can be concrete analyzer classes or one of the descriptive analyzer interfaces.
public getAcceptedAnalyzers ( ) : array(string)
return array(string)
 /**
  * Tests that the logger returns the expected set of analyzers.
  *
  * @return void
  */
 public function testReturnsExceptedAnalyzers()
 {
     $logger = new Xml();
     $actual = $logger->getAcceptedAnalyzers();
     $expected = array('pdepend.analyzer.cyclomatic_complexity', 'pdepend.analyzer.node_loc', 'pdepend.analyzer.npath_complexity', 'pdepend.analyzer.inheritance', 'pdepend.analyzer.node_count', 'pdepend.analyzer.hierarchy', 'pdepend.analyzer.crap_index', 'pdepend.analyzer.code_rank', 'pdepend.analyzer.coupling', 'pdepend.analyzer.class_level', 'pdepend.analyzer.cohesion');
     $this->assertEquals($expected, $actual);
 }