1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
namespace PhpConsole\Test\Storage;
class Memcache extends \PhpConsole\Test\Storage {
/** * @return \PhpConsole\Storage */ protected function initStorage() { if(!class_exists('Memcache')) { $this->markTestSkipped('Memcache extension not installed'); } try { return new \PhpConsole\Storage\Memcache(); } catch(\Exception $exception) { $this->markTestSkipped('Unable to connect to memcache server'); } } }
|