コード例 #1
0
 function paintCaseEnd($test_name)
 {
   parent :: paintCaseEnd($test_name);
   
   print $this->getTestCaseProgress() . " of " . $this->getTestCaseCount() . " done({$test_name})\n";
 }
コード例 #2
0
ファイル: setup.php プロジェクト: ssrsfs/blg
 function paintCaseEnd($test_name)
 {
     parent::paintCaseEnd($test_name);
     print "</blockquote>\n";
 }
コード例 #3
0
ファイル: base.php プロジェクト: bermi/akelos
 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);
 }