Doctrine 2.2 Proxies

This commit is contained in:
Romain Neutron
2012-02-28 14:11:17 +01:00
parent 6105758c9d
commit c6762b8674
2 changed files with 5 additions and 1 deletions

View File

@@ -20,6 +20,11 @@ class XcacheCacheTest extends \PHPUnit_Framework_TestCase
*/ */
public function setUp() public function setUp()
{ {
if(!function_exists('xcache_info'))
{
$this->markTestSkipped('Xcache not loaded');
}
$this->object = new \Alchemy\Phrasea\Cache\XcacheCache; $this->object = new \Alchemy\Phrasea\Cache\XcacheCache;
} }

View File

@@ -23,7 +23,6 @@ use Doctrine\Common\DataFixtures\Loader;
* @link www.phraseanet.com * @link www.phraseanet.com
*/ */
\bootstrap::register_autoloads();
abstract class PhraseanetPHPUnitAbstract extends WebTestCase abstract class PhraseanetPHPUnitAbstract extends WebTestCase