public function Util_ConfigurationTest::testLoggingConfigurationIsReadCorrectly in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit/tests/Util/ConfigurationTest.php \Util_ConfigurationTest::testLoggingConfigurationIsReadCorrectly()
@covers PHPUnit_Util_Configuration::getLoggingConfiguration
File
- vendor/
phpunit/ phpunit/ tests/ Util/ ConfigurationTest.php, line 244
Class
- Util_ConfigurationTest
- @since Class available since Release 3.3.0
Code
public function testLoggingConfigurationIsReadCorrectly() {
$this
->assertEquals(array(
'lowUpperBound' => '50',
'highLowerBound' => '90',
'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());
}