コード例 #1
0
ファイル: TestCaseResult.php プロジェクト: joefallon/kisstest
 public function startTestCase()
 {
     $this->_milliTimespan->startTimer();
 }
コード例 #2
0
ファイル: Summary.php プロジェクト: joefallon/kisstest
 /**
  * @return float
  */
 public function getExecutionTimeInMillisecs()
 {
     self::$_timer->stopTimer();
     $totalTime = self::$_timer->getElapsedTimeInMilliSec();
     return $totalTime;
 }