Esempio n. 1
0
 /**
  * @covers \Core\Cache\FileCache::exists
  * @covers \Core\Cache\FileCache::put
  */
 public function testCacheExists()
 {
     $this->assertFalse(Cache::exists('someCacheToExpire'));
     Cache::put('someNewKey', 'testString', 60);
     $this->assertTrue(Cache::exists('someNewKey'));
 }