mageekguy\atoum\asserters\constant::valueIsSet PHP Method

valueIsSet() protected method

protected valueIsSet ( $message = 'Value is undefined' )
    protected function valueIsSet($message = 'Value is undefined')
    {
        if ($this->isSet === false) {
            throw new exceptions\logic($message);
        }
        return $this;
    }