Пример #1
0
 function testAging()
 {
     $cookie = new SimpleCookie("name", "value", "/path", 200);
     $cookie->agePrematurely(199);
     $this->assertFalse($cookie->isExpired(0));
     $cookie->agePrematurely(2);
     $this->assertTrue($cookie->isExpired(0));
 }
Пример #2
0
 public function testAging()
 {
     $cookie = new SimpleCookie('name', 'value', '/path', 200);
     $cookie->agePrematurely(199);
     $this->assertFalse($cookie->isExpired(0));
     $cookie->agePrematurely(2);
     $this->assertTrue($cookie->isExpired(0));
 }