getEndTime() public method

Get the callback execution end time.
public getEndTime ( ) : float
return float
コード例 #1
0
ファイル: ResultTest.php プロジェクト: vantoozz/scientist
 public function test_result_can_have_end_time()
 {
     $r = new Result();
     $r->setEndTime(123);
     $this->assertEquals(123, $r->getEndTime());
 }