_generated\AcceptanceTesterActions::seeHttpHeaderOnce PHP Метод

seeHttpHeaderOnce() публичный Метод

Checks that http response header is received only once. HTTP RFC2616 allows multiple response headers with the same name. You can check that you didn't accidentally sent the same header twice. php seeHttpHeaderOnce('Cache-Control'); ?>>
См. также: Codeception\Module\REST::seeHttpHeaderOnce()
public seeHttpHeaderOnce ( $name )
$name
    public function seeHttpHeaderOnce($name)
    {
        return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeHttpHeaderOnce', func_get_args()));
    }
AcceptanceTesterActions