public function ChainCacheTest::testFlushToAllProviders in Plug 7
File
- lib/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ChainCacheTest.php, line 78
Class
- ChainCacheTest
Namespace
Doctrine\Tests\Common\Cache
Code
public function testFlushToAllProviders() {
$cache1 = $this
->getMockForAbstractClass('Doctrine\\Common\\Cache\\CacheProvider');
$cache2 = $this
->getMockForAbstractClass('Doctrine\\Common\\Cache\\CacheProvider');
$cache1
->expects($this
->once())
->method('doFlush');
$cache2
->expects($this
->once())
->method('doFlush');
$chainCache = new ChainCache(array(
$cache1,
$cache2,
));
$chainCache
->flushAll();
}