You are here

function DrupalReporter::paintCaseStart in SimpleTest 5

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

File

./drupal_reporter.php, line 133

Class

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

Code

function paintCaseStart($test_name) {
  $this->_progress++;
  $this
    ->paintGroupStart($test_name, 1);
}