public function ChainCacheTest::testOnlyFetchFirstOne in Plug 7
File
- lib/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ ChainCacheTest.php, line 24
Class
Namespace
Doctrine\Tests\Common\CacheCode
public function testOnlyFetchFirstOne() {
$cache1 = new ArrayCache();
$cache2 = $this
->getMockForAbstractClass('Doctrine\\Common\\Cache\\CacheProvider');
$cache2
->expects($this
->never())
->method('doFetch');
$chainCache = new ChainCache(array(
$cache1,
$cache2,
));
$chainCache
->save('id', 'bar');
$this
->assertEquals('bar', $chainCache
->fetch('id'));
}