Scientist\Result::getEndMemory PHP Method

getEndMemory() public method

Get the callback execution ending memory usage.
public getEndMemory ( ) : float
return float
    public function getEndMemory()
    {
        return $this->endMemory;
    }

Usage Example

Example #1
0
 public function test_result_can_have_end_memory()
 {
     $r = new Result();
     $r->setEndMemory(123);
     $this->assertEquals(123, $r->getEndMemory());
 }