Scientist\Result::getEndTime PHP Method

getEndTime() public method

Get the callback execution end time.
public getEndTime ( ) : float
return float
    public function getEndTime()
    {
        return $this->endTime;
    }

Usage Example

Example #1
0
 public function test_result_can_have_end_time()
 {
     $r = new Result();
     $r->setEndTime(123);
     $this->assertEquals(123, $r->getEndTime());
 }