Exemplo n.º 1
0
 public function testExpiresAfterSetNull()
 {
     $item = new CacheItem('my', 2);
     $item->expiresAfter(null);
     $this->assertGreaterThan(time(), $item->getExpiration()->getTimestamp());
     sleep(3);
     $this->assertLessThan(time(), $item->getExpiration()->getTimestamp());
 }