You are here

public function MemcachedSessionHandlerTest::testGetConnection in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-foundation/Tests/Session/Storage/Handler/MemcachedSessionHandlerTest.php \Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler\MemcachedSessionHandlerTest::testGetConnection()

File

vendor/symfony/http-foundation/Tests/Session/Storage/Handler/MemcachedSessionHandlerTest.php, line 124

Class

MemcachedSessionHandlerTest

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler

Code

public function testGetConnection() {
  $method = new \ReflectionMethod($this->storage, 'getMemcached');
  $method
    ->setAccessible(true);
  $this
    ->assertInstanceOf('\\Memcached', $method
    ->invoke($this->storage));
}