getEndMemory() public method

Get the callback execution ending memory usage.
public getEndMemory ( ) : float
return float
Beispiel #1
0
 public function test_result_can_have_end_memory()
 {
     $r = new Result();
     $r->setEndMemory(123);
     $this->assertEquals(123, $r->getEndMemory());
 }