예제 #1
0
파일: CookieTest.php 프로젝트: nxpthx/FLOW3
 /**
  * @test
  */
 public function getPathReturnsPath()
 {
     $cookie = new Cookie('foo', 'bar');
     $this->assertSame('/', $cookie->getPath());
     $cookie = new Cookie('foo', 'bar', 0, NULL, 'flow3.typo3.org', '/about/us');
     $this->assertSame('/about/us', $cookie->getPath());
 }