Example #1
0
 public function startTestCase()
 {
     $this->_milliTimespan->startTimer();
 }
Example #2
0
 /**
  * @return float
  */
 public function getExecutionTimeInMillisecs()
 {
     self::$_timer->stopTimer();
     $totalTime = self::$_timer->getElapsedTimeInMilliSec();
     return $totalTime;
 }