shouldReceive('get') ->with('system', 'memcache_host') ->andReturn('localhost'); $configMock ->shouldReceive('get') ->with('system', 'memcache_port') ->andReturn(11211); $this->cache = new MemcacheCache('localhost', $configMock); return $this->cache; } public function tearDown() { $this->cache->clear(false); parent::tearDown(); } }