kahlan\Expectation::passed PHP Method

passed() public method

Checks if all test passed.
public passed ( ) : boolean
return boolean Returns `true` if no error occurred, `false` otherwise.
    public function passed()
    {
        $this->_run();
        $this->_resolve();
        return $this->_passed;
    }