* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ require_once(dirname(__FILE__).'/../../bootstrap/unit.php'); $plan = 64; $t = new lime_test($plan); try { new sfAPCCache(); } catch (sfInitializationException $e) { $t->skip($e->getMessage(), $plan); return; } if (!ini_get('apc.enable_cli')) { $t->skip('APC must be enable on CLI to run these tests', $plan); return; } require_once(dirname(__FILE__).'/sfCacheDriverTests.class.php'); // setup sfConfig::set('sf_logging_enabled', false); // ->initialize() $t->diag('->initialize()'); $cache = new sfAPCCache(); $cache->initialize(); sfCacheDriverTests::launch($t, $cache);