Scientist\Result::getStartMemory PHP 메소드

getStartMemory() 공개 메소드

Get the callback execution starting memory usage.
public getStartMemory ( ) : float
리턴 float
    public function getStartMemory()
    {
        return $this->startMemory;
    }

Usage Example

예제 #1
0
 public function test_result_can_have_start_memory()
 {
     $r = new Result();
     $r->setStartMemory(123);
     $this->assertEquals(123, $r->getStartMemory());
 }