shouldReceive('get') ->with('system', 'memcache_host') ->andReturn($host); $configMock ->shouldReceive('get') ->with('system', 'memcache_port') ->andReturn($port); try { $this->cache = new MemcacheCache($host, $configMock); $this->lock = new CacheLock($this->cache); } catch (Exception $e) { static::markTestSkipped('Memcache is not available'); } parent::setUp(); } protected function getInstance(): CacheLock { return $this->lock; } protected function getCache(): ICanCacheInMemory { return $this->cache; } /** * @small * @doesNotPerformAssertions */ public function testGetLocks() { static::markTestIncomplete('Race condition because of too fast getAllKeys() which uses a workaround'); } /** * @small * @doesNotPerformAssertions */ public function testGetLocksWithPrefix() { static::markTestIncomplete('Race condition because of too fast getAllKeys() which uses a workaround'); } }