shouldReceive('get') ->with('system', 'memcached_hosts') ->andReturn([0 => $host . ', ' . $port]); $logger = new NullLogger(); $lock = null; try { $cache = new MemcachedCache($host, $configMock, $logger); $lock = new CacheLock($cache); } catch (Exception $e) { static::markTestSkipped('Memcached is not available'); } return $lock; } /** * @doesNotPerformAssertions */ public function testGetLocks() { static::markTestIncomplete('Race condition because of too fast getLocks() which uses a workaround'); } /** * @doesNotPerformAssertions */ public function testGetLocksWithPrefix() { static::markTestIncomplete('Race condition because of too fast getLocks() which uses a workaround'); } }