public function testLoggingConfigurationIsReadCorrectly() {
$this
->assertEquals(array(
'charset' => 'UTF-8',
'lowUpperBound' => '35',
'highLowerBound' => '70',
'highlight' => FALSE,
'coverage-html' => '/tmp/report',
'coverage-clover' => '/tmp/clover.xml',
'json' => '/tmp/logfile.json',
'plain' => '/tmp/logfile.txt',
'tap' => '/tmp/logfile.tap',
'logIncompleteSkipped' => FALSE,
'junit' => '/tmp/logfile.xml',
'testdox-html' => '/tmp/testdox.html',
'testdox-text' => '/tmp/testdox.txt',
), $this->configuration
->getLoggingConfiguration());
}