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

getDomainReturnsDomain() public method

    public function getDomainReturnsDomain()
    {
        $cookie = new Cookie('foo', 'bar', 0, null, 'flow.neos.io');
        $this->assertSame('flow.neos.io', $cookie->getDomain());
    }