From 0e4a7caf0b79f49ba4595509f09cea7b9796cb54 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Sat, 17 Jan 2015 23:30:20 +0100 Subject: [PATCH] #954 DDC-2982 - Evicting all cache entries is not supported with a generic cache adapter --- tests/Doctrine/Tests/ORM/Cache/DefaultRegionTest.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/Doctrine/Tests/ORM/Cache/DefaultRegionTest.php b/tests/Doctrine/Tests/ORM/Cache/DefaultRegionTest.php index f449cfe6d..94cc99e35 100644 --- a/tests/Doctrine/Tests/ORM/Cache/DefaultRegionTest.php +++ b/tests/Doctrine/Tests/ORM/Cache/DefaultRegionTest.php @@ -60,4 +60,16 @@ class DefaultRegionTest extends AbstractRegionTest $this->assertSame('foo', $cache->getNamespace()); } + + public function testEvictAllWithGenericCacheThrowsUnsupportedException() + { + /* @var $cache \Doctrine\Common\Cache\Cache */ + $cache = $this->getMock('Doctrine\Common\Cache\Cache'); + + $region = new DefaultRegion('foo', $cache); + + $this->setExpectedException('BadMethodCallException'); + + $region->evictAll(); + } } \ No newline at end of file