getStartMemory() 공개 메소드

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