123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Illuminate\Tests\Integration\Cache;
- use Memcached;
- use Orchestra\Testbench\TestCase;
- abstract class MemcachedIntegrationTestCase extends TestCase
- {
- protected function setUp(): void
- {
- parent::setUp();
- // Determine whether there is a running Memcached instance
- $testConnection = new Memcached;
- $testConnection->addServer(
- env('MEMCACHED_HOST', '127.0.0.1'),
- env('MEMCACHED_PORT', 11211)
- );
- $testConnection->getVersion();
- if ($testConnection->getResultCode() > Memcached::RES_SUCCESS) {
- $this->markTestSkipped('Memcached could not establish a connection.');
- }
- $testConnection->quit();
- }
- }
|