From ef8703e3e93f57a551e0957cd95aabf298e6151c Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Tue, 3 Jan 2012 19:01:53 +0100 Subject: [PATCH] DCOM-93 - Allow to check testsuite with any constructor-less cache implementation --- tests/Doctrine/Tests/OrmFunctionalTestCase.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/OrmFunctionalTestCase.php b/tests/Doctrine/Tests/OrmFunctionalTestCase.php index ba54da95c..5515e904b 100644 --- a/tests/Doctrine/Tests/OrmFunctionalTestCase.php +++ b/tests/Doctrine/Tests/OrmFunctionalTestCase.php @@ -294,7 +294,11 @@ abstract class OrmFunctionalTestCase extends OrmTestCase // the actual database platform used during execution has effect on some // metadata mapping behaviors (like the choice of the ID generation). if (is_null(self::$_metadataCacheImpl)) { - self::$_metadataCacheImpl = new \Doctrine\Common\Cache\ArrayCache; + if (isset($GLOBALS['DOCTRINE_CACHE_IMPL'])) { + self::$_metadataCacheImpl = new $GLOBALS['DOCTRINE_CACHE_IMPL']; + } else { + self::$_metadataCacheImpl = new \Doctrine\Common\Cache\ArrayCache; + } } if (is_null(self::$_queryCacheImpl)) {