writeProgressWithColor() protected method

Writes progress with a color sequence if colors are enabled.
protected writeProgressWithColor ( string $color, string $buffer )
$color string
$buffer string
 /**
  * {@inheritdoc}
  */
 protected function writeProgressWithColor($color, $buffer)
 {
     if ($this->debug) {
         parent::writeProgressWithColor($color, $buffer);
     }
     $this->printClassName();
     $this->printTestCaseStatus($color, $buffer);
 }