コード例 #1
0
ファイル: SetCookieTest.php プロジェクト: puzzlehttp/puzzle
 public function testDeterminesIfExpired()
 {
     $c = new puzzle_cookie_SetCookie();
     $c->setExpires(10);
     $this->assertTrue($c->isExpired());
     $c->setExpires(time() + 10000);
     $this->assertFalse($c->isExpired());
 }