Neos\Flow\Tests\Unit\Http\CookieTest::createCookieFromRawDoesntCareAboutUnkownAttributeValues PHP 메소드

createCookieFromRawDoesntCareAboutUnkownAttributeValues() 공개 메소드

    public function createCookieFromRawDoesntCareAboutUnkownAttributeValues()
    {
        $cookie = Cookie::createFromRawSetCookieHeader('ckName=someValue; someproperty=itsvalue');
        $this->assertEquals('ckName', $cookie->getName());
        $this->assertEquals('someValue', $cookie->getValue());
    }