public function SessionHandlerProxyTest::testRead

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/Session/Storage/Proxy/SessionHandlerProxyTest.php, line 91

Class

SessionHandlerProxyTest
Tests for SessionHandlerProxy class.

Namespace

Symfony\Component\HttpFoundation\Tests\Session\Storage\Proxy

Code

public function testRead() {
  $this->mock
    ->expects($this
    ->once())
    ->method('read');
  $this->proxy
    ->read('id');
}