You are here

function DrupalReporter::DrupalReporter in SimpleTest 5

Same name and namespace in other branches
  1. 6 drupal_reporter.php \DrupalReporter::DrupalReporter()

File

./drupal_reporter.php, line 21

Class

DrupalReporter
Minimal drupal displayer. Accumulates output to $_output. Based on HtmlReporter by Marcus Baker

Code

function DrupalReporter($character_set = 'ISO-8859-1') {
  $this
    ->SimpleReporter();
  drupal_add_css(drupal_get_path('module', 'simpletest') . '/simpletest.css');
  $this->_character_set = $character_set;
}