public function MemcacheSessionHandlerTest::testGetConnection in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-foundation/Tests/Session/Storage/Handler/MemcacheSessionHandlerTest.php \Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler\MemcacheSessionHandlerTest::testGetConnection()
File
- vendor/
symfony/ http-foundation/ Tests/ Session/ Storage/ Handler/ MemcacheSessionHandlerTest.php, line 125
Class
Namespace
Symfony\Component\HttpFoundation\Tests\Session\Storage\HandlerCode
public function testGetConnection() {
$method = new \ReflectionMethod($this->storage, 'getMemcache');
$method
->setAccessible(true);
$this
->assertInstanceOf('\\Memcache', $method
->invoke($this->storage));
}