mirror of
https://github.com/smarty-php/smarty.git
synced 2025-10-17 22:45:20 +02:00
31 lines
787 B
PHP
31 lines
787 B
PHP
<?php
|
|
/**
|
|
* Smarty PHPunit tests for cache resource Apc
|
|
*
|
|
* @package PHPunit
|
|
* @author Uwe Tews
|
|
*/
|
|
include_once __DIR__ . '/../Memcache/CacheResourceCustomMemcacheTest.php';
|
|
|
|
/**
|
|
* class for cache resource file tests
|
|
*
|
|
* @runTestsInSeparateProcess
|
|
* @preserveGlobalState disabled
|
|
* @backupStaticAttributes enabled
|
|
*/
|
|
class CacheResourceCustomApcTest extends CacheResourceCustomMemcacheTest
|
|
{
|
|
public function setUp(): void
|
|
{
|
|
if (!function_exists('apc_cache_info') || ini_get('apc.enable_cli')) {
|
|
$this->markTestSkipped('APC cache not available');
|
|
}
|
|
$this->setUpSmarty(__DIR__);
|
|
parent::setUp();
|
|
$this->smarty->setCachingType('apc');
|
|
$this->smarty->addPluginsDir(SMARTY_DIR . '../demo/plugins/');
|
|
}
|
|
}
|
|
|