コード例 #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());
 }