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