_generated\AcceptanceTesterActions::dontSeeHttpHeader PHP Method

dontSeeHttpHeader() public method

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