mageekguy\atoum\score::reset PHP Method

reset() public method

public reset ( )
    public function reset()
    {
        $this->passNumber = 0;
        $this->failAssertions = array();
        $this->exceptions = array();
        $this->runtimeExceptions = array();
        $this->errors = array();
        $this->outputs = array();
        $this->durations = array();
        $this->memoryUsages = array();
        $this->uncompletedMethods = array();
        $this->coverage->reset();
        return $this;
    }

Usage Example

Beispiel #1
0
 public function reset()
 {
     $this->phpPath = null;
     $this->phpVersion = null;
     $this->atoumPath = null;
     $this->atoumVersion = null;
     return parent::reset();
 }
All Usage Examples Of mageekguy\atoum\score::reset