function paintCaseEnd($test_name)
 {
   parent :: paintCaseEnd($test_name);
   
   print $this->getTestCaseProgress() . " of " . $this->getTestCaseCount() . " done({$test_name})\n";
 }
Ejemplo n.º 2
0
Archivo: setup.php Proyecto: ssrsfs/blg
 function paintCaseEnd($test_name)
 {
     parent::paintCaseEnd($test_name);
     print "</blockquote>\n";
 }
Ejemplo n.º 3
0
 public function paintCaseEnd($case)
 {
     $duration = microtime(true) - $this->caseStart;
     $memory = memory_get_usage() - $this->caseMemoryStart;
     if ($this->verbose) {
         print "\n    {$duration}/s and {$memory} bytes required to complete {$this->currentCaseName}\n\n";
     }
     $this->time_log['cases'][$case] = array($duration, $memory);
     parent::paintCaseEnd($case);
 }