_generated\AcceptanceTesterActions::cantSeeHttpHeader PHP Method

cantSeeHttpHeader() public method

Checks over the given HTTP header and (optionally) its value, asserting that are not there
See also: Codeception\Module\REST::dontSeeHttpHeader()
public cantSeeHttpHeader ( $name, $value = null )
$name
$value
    public function cantSeeHttpHeader($name, $value = null)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeHttpHeader', func_get_args()));
    }
AcceptanceTesterActions