You are here

public function ChainCacheTest::testDeleteToAllProviders in Plug 7

File

lib/doctrine/cache/tests/Doctrine/Tests/Common/Cache/ChainCacheTest.php, line 66

Class

ChainCacheTest

Namespace

Doctrine\Tests\Common\Cache

Code

public function testDeleteToAllProviders() {
  $cache1 = $this
    ->getMockForAbstractClass('Doctrine\\Common\\Cache\\CacheProvider');
  $cache2 = $this
    ->getMockForAbstractClass('Doctrine\\Common\\Cache\\CacheProvider');
  $cache1
    ->expects($this
    ->once())
    ->method('doDelete');
  $cache2
    ->expects($this
    ->once())
    ->method('doDelete');
  $chainCache = new ChainCache(array(
    $cache1,
    $cache2,
  ));
  $chainCache
    ->delete('bar');
}