getEndMemory() 공개 메소드

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