_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