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

getPathReturnsPath() public method

public getPathReturnsPath ( )
    public function getPathReturnsPath()
    {
        $cookie = new Cookie('foo', 'bar');
        $this->assertSame('/', $cookie->getPath());
        $cookie = new Cookie('foo', 'bar', 0, null, 'flow.neos.io', '/about/us');
        $this->assertSame('/about/us', $cookie->getPath());
    }