Пример #1
0
 protected function tearDown()
 {
     if (file_exists($this->cache_dir)) {
         $this->remove_cache_dir();
     }
     parent::tearDown();
 }
Пример #2
0
 protected function setUp()
 {
     parent::setUp();
     $this->driver = new \phpbb\cache\driver\apc();
     $this->driver->purge();
 }
Пример #3
0
 protected function setUp()
 {
     parent::setUp();
     $this->driver = new \phpbb\cache\driver\redis(self::$config['host'], self::$config['port']);
     $this->driver->purge();
 }