public function CouchbaseCacheTest::setUp in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/cache/tests/Doctrine/Tests/Common/Cache/CouchbaseCacheTest.php \Doctrine\Tests\Common\Cache\CouchbaseCacheTest::setUp()
File
- vendor/doctrine/ cache/ tests/ Doctrine/ Tests/ Common/ Cache/ CouchbaseCacheTest.php, line 12 
Class
Namespace
Doctrine\Tests\Common\CacheCode
public function setUp() {
  if (extension_loaded('couchbase')) {
    try {
      $this->couchbase = new Couchbase('127.0.0.1', 'Administrator', 'password', 'default');
    } catch (Exception $ex) {
      $this
        ->markTestSkipped('Could not instantiate the Couchbase cache because of: ' . $ex);
    }
  }
  else {
    $this
      ->markTestSkipped('The ' . __CLASS__ . ' requires the use of the couchbase extension');
  }
}