| 1 | <?php |
||
| 6 | class MemcachedCacheTest extends CacheTest{ |
||
| 7 | |||
| 8 | protected $port = 11211; |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @covers DBAL\Caching\MemcachedCache |
||
| 12 | */ |
||
| 13 | public function setUp() { |
||
| 14 | if(!extension_loaded('memcached')) { |
||
| 15 | $this->markTestSkipped( |
||
| 16 | 'The memcached extension is not available.' |
||
| 17 | ); |
||
| 18 | } |
||
| 19 | $this->cache = new MemcachedCache(); |
||
| 20 | parent::setUp(); |
||
| 21 | } |
||
| 22 | } |
||
| 23 |