mageekguy\atoum\asserters\variable::isNotCallable PHP Method

isNotCallable() public method

public isNotCallable ( $failMessage = null )
    public function isNotCallable($failMessage = null)
    {
        if (is_callable($this->valueIsSet()->value) === false) {
            $this->pass();
        } else {
            $this->fail($failMessage ?: $this->_('%s is callable', $this));
        }
        return $this;
    }