public function Util_ConfigurationTest::testLoggingConfigurationIsReadCorrectly

File

drupal/core/vendor/phpunit/phpunit/Tests/Util/ConfigurationTest.php, line 224

Class

Util_ConfigurationTest
@package PHPUnit @author Sebastian Bergmann <sebastian@phpunit.de> @copyright 2001-2013 Sebastian Bergmann <sebastian@phpunit.de> @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License @link …

Code

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());
}