Пример #1
0
 /**
  * Can we remove a cached object?
  *
  * @access public
  */
 public function testRemoveCachedObject()
 {
     // Now remove the file
     $this->assertTrue(Core\Cache::remove('foo'));
     // The file exists?
     $this->assertFalse(Core\Cache::has('foo'));
 }