// put some data to the cache.
$this->_cache->put(md5('stdClass'), $stdClass);
$this->_cache->put(md5('ZipArchive'), new ZipArchive());
$this->_cache->put(md5('XMLReader'), new XMLReader());
$this->assertFalse(dba_fetch(md5('stdClass'), $dba));
$this->assertFalse(dba_fetch(md5('ZipArchive'), $dba));
$this->assertFalse(dba_fetch(md5('XMLReader'), $dba));
}
// put some data to the cache.
$this->_cache->put(md5('stdClass'), $stdClass, 2);
$this->_cache->put(md5('ZipArchive'), new ZipArchive(), 2);
$this->_cache->put(md5('XMLReader'), new XMLReader(), 2);