public function CouchbaseCacheTest::setUp in Plug 7
File
- lib/
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');
}
}