function DrupalReporter::DrupalReporter in SimpleTest 6
Same name and namespace in other branches
- 5 drupal_reporter.php \DrupalReporter::DrupalReporter()
File
- ./
drupal_reporter.php, line 22
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;
}