<?phpnamespaceDoctrine\Tests\Common\Cache;useDoctrine\Common\Cache\XcacheCache;classXcacheCacheTestextendsCacheTest{publicfunctionsetUp(){if(!extension_loaded('xcache')){$this->markTestSkipped('The '.__CLASS__.' requires the use of xcache');}}protectedfunction_getCacheDriver(){returnnewXcacheCache();}}