Neos\Flow\Tests\Unit\Http\CookieTest::createCookieFromRawSetsSecureIfPresent PHP Method

createCookieFromRawSetsSecureIfPresent() public method

    public function createCookieFromRawSetsSecureIfPresent()
    {
        $cookie = Cookie::createFromRawSetCookieHeader('ckName=someValue; Secure; more=nothing');
        $this->assertTrue($cookie->isSecure());
    }