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