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());
    }