_generated\AcceptanceTesterActions::canSeeHttpHeader PHP Method

canSeeHttpHeader() public method

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