getStartTime() public method

Get the callback execution start time.
public getStartTime ( ) : float
return float
Beispiel #1
0
 public function test_result_can_have_start_time()
 {
     $r = new Result();
     $r->setStartTime(123);
     $this->assertEquals(123, $r->getStartTime());
 }