protected function CacheTest::isSharedStorage in Plug 7
Return whether multiple cache providers share the same storage.
This is used for skipping certain tests for shared storage behavior.
Return value
boolean
2 calls to CacheTest::isSharedStorage()
- CacheTest::testDeleteAllAndNamespaceVersioningBetweenCaches in lib/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ CacheTest.php - CacheTest::testFlushAllAndNamespaceVersioningBetweenCaches in lib/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ CacheTest.php
3 methods override CacheTest::isSharedStorage()
- ArrayCacheTest::isSharedStorage in lib/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ ArrayCacheTest.php - Return whether multiple cache providers share the same storage.
- BaseFileCacheTest::isSharedStorage in lib/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ BaseFileCacheTest.php - Return whether multiple cache providers share the same storage.
- ChainCacheTest::isSharedStorage in lib/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ ChainCacheTest.php - Return whether multiple cache providers share the same storage.
File
- lib/
doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ CacheTest.php, line 316
Class
Namespace
Doctrine\Tests\Common\CacheCode
protected function isSharedStorage() {
return true;
}