File
- drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/MemcacheSessionHandlerTest.php, line 62
Class
- MemcacheSessionHandlerTest
Namespace
Symfony\Component\HttpFoundation\Tests\Session\Storage\Handler
Code
public function testReadSession() {
$this->memcache
->expects($this
->once())
->method('get')
->with(self::PREFIX . 'id');
$this
->assertEquals('', $this->storage
->read('id'));
}